Skip to content

Commit

Permalink
Add CPython 3.10 wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
hrnciar committed Aug 16, 2021
1 parent 030ca97 commit 85b677b
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:

- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel==1.9.0
python -m pip install cibuildwheel==2.1.1
- name: Build minimum NumPy for aarch64
if: matrix.cibw_archs == 'aarch64' && steps.numpy-cache.outputs.cache-hit != 'true'
Expand All @@ -64,6 +64,17 @@ jobs:
run: |
cp setup.cfg.template setup.cfg
- name: Build wheels for CPython 3.10
run: |
python -m cibuildwheel --output-dir dist
env:
CIBW_BUILD: "cp310-*"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2010
CIBW_MANYLINUX_I686_IMAGE: manylinux2010
CIBW_BEFORE_BUILD: pip install certifi numpy==1.21.2
MPL_DISABLE_FH4: "yes"
CIBW_ARCHS: ${{ matrix.cibw_archs }}

- name: Build wheels for CPython 3.9
run: |
python -m cibuildwheel --output-dir dist
Expand Down

0 comments on commit 85b677b

Please sign in to comment.