Skip to content

Commit

Permalink
fixing binary release
Browse files Browse the repository at this point in the history
  • Loading branch information
sshiraiwa committed Mar 28, 2021
1 parent d7db79f commit ab8fd07
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]
#os: [ubuntu-latest]
os: [ubuntu-20.04]
env:
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/release_binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ jobs:
#
export PATH=/opt/python/cp36-cp36m/bin:$PATH
pip3 install wheel
pip3 install numpy==1.20.0
pip3 install six
pip3 install auditwheel
pip3 install twine
if [ -f requirements.txt ]; then
pip3 install -r requirements.txt
fi
rm -rf dist/*
python3 setup.py sdist
ls -l dist/
Expand Down Expand Up @@ -53,10 +55,12 @@ jobs:
#
ls -l /opt/python/
export PATH=/opt/python/${{ matrix.pythonpath }}/bin:$PATH
pip3 install numpy==1.20.0
pip3 install six
pip3 install auditwheel
pip3 install twine
pip3 install twine
if [ -f requirements.txt ]; then
pip3 install -r requirements.txt
fi
CWD=$PWD
ls -l
python3 setup.py install
Expand Down

0 comments on commit ab8fd07

Please sign in to comment.