Skip to content

Commit 520e8ab

Browse files
authored
Issue-333: Fix missing Python 3.9 wheel for manylinux (#335)
* Issue-333: Fix missing Python 3.9 wheel for manylinux * Fix another bug
1 parent d36d2b1 commit 520e8ab

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/python.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,14 @@ jobs:
3535
git config user.email "<>"
3636
git --version
3737
38-
- name: Package Python 3.9 and earlier
39-
if: matrix.os == 'ubuntu-latest' && matrix.pyver != '3.10' && matrix.pyver != '3.11'
38+
- name: Package Python 3.8 and earlier
39+
if: matrix.os == 'ubuntu-latest' && matrix.pyver != '3.9' && matrix.pyver != '3.10' && matrix.pyver != '3.11'
4040
run: docker run --rm -v ${{github.workspace}}/:/io ezralanglois/interop sh /io/tools/package.sh /io /io/dist travis OFF
4141

42+
- name: Package Python 3.9
43+
if: matrix.os == 'ubuntu-latest' && matrix.pyver == '3.9'
44+
run: docker run --rm -v ${{github.workspace}}/:/io ezralanglois/interop_centos7 sh /io/tools/package.sh /io /io/dist travis OFF Release cp39-cp39
45+
4246
- name: Package Python 3.10
4347
if: matrix.os == 'ubuntu-latest' && matrix.pyver == '3.10'
4448
run: docker run --rm -v ${{github.workspace}}/:/io ezralanglois/interop_centos7 sh /io/tools/package.sh /io /io/dist travis OFF Release cp310-cp310

docs/src/changes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
| Date | Description |
66
|------------|-------------------------------------------------------------------|
7+
| 2023-12-14 | Issue-333: Fix missing Python 3.9 wheel for manylinux |
78
| 2023-12-10 | Issue-332: Improve documentation and remove old python 2 examples |
89

910
## v1.3.0

0 commit comments

Comments
 (0)