Skip to content

Commit

Permalink
We require Python 3.9 now
Browse files Browse the repository at this point in the history
Also update cibuildwheel and upload-artifact
  • Loading branch information
peterjc authored Jun 28, 2024
1 parent 7a73697 commit c145077
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
os: [ubuntu-20.04, windows-2019, macos-13, macos-14]
env:
# Seems to have trouble parsing our setup.py, thus:
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.8"
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.9"
# Install numpy with a wheel (do NOT compile it):
CIBW_BEFORE_BUILD: "pip install --only-binary :all: -r requirements.txt"
# There are/were no numpy wheels for these:
Expand All @@ -35,13 +35,13 @@ jobs:
git checkout c6120cde9ba9de1ca98a92efad5037a2f1643214
cd ..
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.5
uses: pypa/cibuildwheel@v2.19.1
with:
package-dir: biopython
output-dir: wheelhouse

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl

0 comments on commit c145077

Please sign in to comment.