Skip to content

Commit

Permalink
Python 3.11 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
dawad committed Oct 26, 2022
1 parent 12a3bf2 commit ae6ca88
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/wheels.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
os: [macos-latest, ubuntu-20.04, windows-2019]

steps:
- uses: actions/checkout@v2
Expand All @@ -30,7 +30,11 @@ jobs:
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: "cp310-manylinux_aarch64 cp39-manylinux_aarch64 cp38-manylinux_aarch64 cp37-manylinux_aarch64"
CIBW_BUILD: "cp311-win_amd64
cp311-macosx_x86_64
cp311-macosx_arm64
cp311-manylinux_x86_64
cp311-manylinux_aarch64"
CIBW_ARCHS_MACOS: "x86_64 arm64"
CIBW_ARCHS_LINUX: "x86_64 aarch64"
CIBW_BEFORE_BUILD_WINDOWS: "python -m pip install numpy cython scikit-build cmake &
Expand Down

0 comments on commit ae6ca88

Please sign in to comment.