diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2022-08-12 11:46:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-12 11:46:11 -0500 |
commit | 4ee7b891ee9c3e5d0a805471eb03fb09f5cd65df (patch) | |
tree | 742fd41d39699633eb42afb815187a204d7c17fe | |
parent | 34abd9b7cbdcda9a5d57a46640fe93d8020742ca (diff) | |
parent | f7ea43f4df664a94f169bf40561cd943d4b9976a (diff) | |
download | numpy-4ee7b891ee9c3e5d0a805471eb03fb09f5cd65df.tar.gz |
Merge pull request #22102 from charris/add-python-311-wheels
BLD: Try building python3.11 wheels.
-rw-r--r-- | .github/workflows/wheels.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 76792e908..4169a0b3f 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -78,7 +78,7 @@ jobs: # TODO: uncomment PyPy 3.9 builds once PyPy # re-releases a new minor version # NOTE: This needs a bump of cibuildwheel version, also, once that happens. - python: ["cp38", "cp39", "cp310", "pp38"] #, "pp39"] + python: ["cp38", "cp39", "cp310", "cp311", "pp38"] #, "pp39"] exclude: # Don't build PyPy 32-bit windows - buildplat: [windows-2019, win32] @@ -115,7 +115,7 @@ jobs: if: ${{ env.IS_32_BIT == 'true' }} - name: Build wheels - uses: pypa/cibuildwheel@v2.4.0 + uses: pypa/cibuildwheel@v2.9.0 env: CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }} |