Skip to content

Commit

Permalink
Issue-333: Fix missing Python 3.9 wheel for manylinux (#335)
Browse files Browse the repository at this point in the history
* Issue-333: Fix missing Python 3.9 wheel for manylinux

* Fix another bug
  • Loading branch information
ezralanglois authored Dec 15, 2023
1 parent d36d2b1 commit 520e8ab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,14 @@ jobs:
git config user.email "<>"
git --version
- name: Package Python 3.9 and earlier
if: matrix.os == 'ubuntu-latest' && matrix.pyver != '3.10' && matrix.pyver != '3.11'
- name: Package Python 3.8 and earlier
if: matrix.os == 'ubuntu-latest' && matrix.pyver != '3.9' && matrix.pyver != '3.10' && matrix.pyver != '3.11'
run: docker run --rm -v ${{github.workspace}}/:/io ezralanglois/interop sh /io/tools/package.sh /io /io/dist travis OFF

- name: Package Python 3.9
if: matrix.os == 'ubuntu-latest' && matrix.pyver == '3.9'
run: docker run --rm -v ${{github.workspace}}/:/io ezralanglois/interop_centos7 sh /io/tools/package.sh /io /io/dist travis OFF Release cp39-cp39

- name: Package Python 3.10
if: matrix.os == 'ubuntu-latest' && matrix.pyver == '3.10'
run: docker run --rm -v ${{github.workspace}}/:/io ezralanglois/interop_centos7 sh /io/tools/package.sh /io /io/dist travis OFF Release cp310-cp310
Expand Down
1 change: 1 addition & 0 deletions docs/src/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

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

## v1.3.0
Expand Down

0 comments on commit 520e8ab

Please sign in to comment.