Skip to content

Commit

Permalink
(Hopefully) Fix PyPI releases & add Py3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
smheidrich committed Sep 18, 2022
1 parent fe590aa commit a812c45
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build-and-prelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ jobs:
image: quay.io/pypa/manylinux_2_24_x86_64
strategy:
fail-fast: false
matrix:
pyver: [38,39,310]
steps:
- name: Check out repo and submodule repos
uses: actions/checkout@v2
Expand Down Expand Up @@ -52,7 +50,7 @@ jobs:
- name: Install dependencies and build wheels
run: |
# from: https://github.com/PyO3/setuptools-rust#build-wheelssh
for PYBIN in /opt/python/cp${{ matrix.pyver }}*/bin; do
for PYBIN in /opt/python/cp{37,38,39,310}*/bin; do
"${PYBIN}/pip" install -U setuptools wheel setuptools-rust
"${PYBIN}/python" setup.py bdist_wheel
done
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ jobs:
image: quay.io/pypa/manylinux_2_24_x86_64
strategy:
fail-fast: false
matrix:
pyver: [38,39,310]
steps:
- name: Check out repo and submodule repos
uses: actions/checkout@v2
Expand Down Expand Up @@ -53,7 +51,7 @@ jobs:
- name: Install dependencies and build wheels
run: |
# from: https://github.com/PyO3/setuptools-rust#build-wheelssh
for PYBIN in /opt/python/cp${{ matrix.pyver }}*/bin; do
for PYBIN in /opt/python/cp{37,38,39,310}*/bin; do
"${PYBIN}/pip" install -U setuptools wheel setuptools-rust
"${PYBIN}/python" setup.py bdist_wheel
done
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9]
python-version: [3.7, 3.8, 3.9, 3.10]
steps:
- name: Check out repo and submodule repos
uses: actions/checkout@v2
Expand Down

0 comments on commit a812c45

Please sign in to comment.