Skip to content

Commit

Permalink
change pip3 install to python3 -m pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
justinlaughlin committed Aug 8, 2024
1 parent 48aeec4 commit 8ed139d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/testrelease_binary_v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
export PATH=/opt/python/cp38-cp38m/bin:$PATH
pip3 install wheel six auditwheel twine
pip3 install urllib3==1.26.6 # use older version to avoid OpenSSL vesion issue
pip3 install numpy==1.21.6
pip3 install -r requirements.txt
python3 -m pip install wheel six auditwheel twine
python3 -m pip install urllib3==1.26.6 # use older version to avoid OpenSSL vesion issue
python3 -m pip install numpy==1.21.6
python3 -m pip install -r requirements.txt
rm -rf dist/*
python3 setup.py sdist
Expand Down

0 comments on commit 8ed139d

Please sign in to comment.