Skip to content

Commit 6370264

Browse files
committed
updating release script
1 parent 02a22a8 commit 6370264

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/release_binary.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ jobs:
2222
echo "!!!!!: "$REF
2323
git checkout $REF
2424
#
25-
export PATH=/opt/python/cp37-cp37m/bin:$PATH
25+
export PATH=/opt/python/cp38-cp38/bin:$PATH
2626
27+
pip install -U packaging
2728
pip3 install wheel six auditwheel twine
2829
pip3 install urllib3==1.26.6 # use older version to avoid OpenSSL vesion issue
2930
pip3 install numpy==1.21.6
@@ -40,7 +41,7 @@ jobs:
4041
needs: make_sdist
4142
strategy:
4243
matrix:
43-
pythonpath: ["cp38-cp38", "cp39-cp39", "cp310-cp310", "cp311-cp311"]
44+
pythonpath: ["cp38-cp38", "cp39-cp39", "cp310-cp310", "cp311-cp311", "cp312-cp312"]
4445

4546
runs-on: ubuntu-latest
4647
container: quay.io/pypa/manylinux2014_x86_64
@@ -59,6 +60,9 @@ jobs:
5960
#
6061
ls -l /opt/python/
6162
export PATH=/opt/python/${{ matrix.pythonpath }}/bin:$PATH
63+
64+
pip install setuptools
65+
pip install -U packaging
6266
pip3 install auditwheel twine
6367
pip3 install urllib3==1.26.6 # use older version to avoid OpenSSL vesion issue
6468

.github/workflows/testrelease_binary.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ jobs:
2222
echo "!!!!!: "$REF
2323
git checkout $REF
2424
#
25-
export PATH=/opt/python/cp37-cp37m/bin:$PATH
25+
export PATH=/opt/python/cp38-cp38/bin:$PATH
2626
27+
pip install -U packaging
2728
pip3 install wheel six auditwheel twine
2829
pip3 install urllib3==1.26.6 # use older version to avoid OpenSSL vesion issue
2930
pip3 install numpy==1.21.6
@@ -60,6 +61,8 @@ jobs:
6061
ls -l /opt/python/
6162
export PATH=/opt/python/${{ matrix.pythonpath }}/bin:$PATH
6263
64+
pip install setuptools
65+
pip install -U packaging
6366
pip3 install auditwheel twine
6467
pip3 install urllib3==1.26.6 # use older version to avoid OpenSSL vesion issue
6568

0 commit comments

Comments
 (0)