Skip to content

Commit

Permalink
update release CI scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
sshiraiwa committed Aug 7, 2024
1 parent 54ca753 commit ac9516c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/release_binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,10 @@ jobs:
#
ls -l /opt/python/
export PATH=/opt/python/${{ matrix.pythonpath }}/bin:$PATH
pip3 install six auditwheel twine
pip3 install auditwheel twine
pip3 install urllib3==1.26.6 # use older version to avoid OpenSSL vesion issue
pip3 install numpy==1.21.6
pip3 install numba-scipy
if [ -f requirements.txt ]; then
pip3 install -r requirements.txt
fi
pip3 install -r requirements.txt
CWD=$PWD
yum install -y zlib-devel
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/testrelease_binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,11 @@ jobs:
#
ls -l /opt/python/
export PATH=/opt/python/${{ matrix.pythonpath }}/bin:$PATH
pip3 install six auditwheel twine
pip3 install numpy==1.21.6
pip3 install auditwheel twine
pip3 install urllib3==1.26.6 # use older version to avoid OpenSSL vesion issue
pip3 install numba-scipy
if [ -f requirements.txt ]; then
pip3 install -r requirements.txt
fi
pip3 install -r requirements.txt
CWD=$PWD
yum install -y zlib-devel
Expand Down

0 comments on commit ac9516c

Please sign in to comment.