Skip to content

Commit d853d4f

Browse files
committed
update release script
1 parent babced7 commit d853d4f

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/release_binary.yml

Lines changed: 4 additions & 3 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/cp38-cp38/bin:$PATH
26-
25+
export PATH=/opt/python/cp39-cp39/bin:$PATH
26+
27+
pip install setuptools
2728
pip install -U packaging
2829
pip3 install wheel six auditwheel twine
2930
pip3 install urllib3==1.26.6 # use older version to avoid OpenSSL vesion issue
@@ -41,7 +42,7 @@ jobs:
4142
needs: make_sdist
4243
strategy:
4344
matrix:
44-
pythonpath: ["cp39-cp39", "cp310-cp310", "cp311-cp311", "cp312-cp312"]
45+
pythonpath: ["cp39-cp39", "cp310-cp310", "cp311-cp311", "cp312-cp312", "cp313-cp313"]
4546

4647
runs-on: ubuntu-latest
4748
container: quay.io/pypa/manylinux2014_x86_64

.github/workflows/testrelease_binary.yml

Lines changed: 3 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/cp38-cp38/bin:$PATH
26-
25+
export PATH=/opt/python/cp39-cp39/bin:$PATH
26+
27+
pip install setuptools
2728
pip install -U packaging
2829
pip3 install wheel six auditwheel twine
2930
pip3 install urllib3==1.26.6 # use older version to avoid OpenSSL vesion issue

mfem/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ def debug_print(message):
2020

2121
print(message)
2222

23-
__version__ = '4.8.0rc7'
23+
__version__ = '4.8.0rc8'
2424

0 commit comments

Comments
 (0)