Skip to content

Commit

Permalink
add python 3.13 wheels to build step
Browse files Browse the repository at this point in the history
  • Loading branch information
jamie256 committed May 24, 2024
1 parent 92f9b3f commit c81f372
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
env:
CIBW_PRERELEASE_PYTHONS: True # enable Python 3.11
CIBW_SKIP: "*-win32"
CIBW_BUILD: "cp36-*64 cp37-*64 cp38-*64 cp39-*64 cp310-*64 cp311-*64 cp312-*64"
CIBW_BUILD: "cp36-*64 cp37-*64 cp38-*64 cp39-*64 cp310-*64 cp311-*64 cp312-*64 cp313-*64"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
CIBW_ARCHS_MACOS: "x86_64 universal2"
CIBW_ARCHS_LINUX: ${{ matrix.config.arch }}
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
env:
CIBW_PRERELEASE_PYTHONS: True
CIBW_SKIP: "*-win32 *-manylinux_i686 *-musllinux_*"
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-* cp312-*"
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*"
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux2014
CIBW_ARCHS_LINUX: "aarch64"
CIBW_BEFORE_TEST: 'if [ "$CIBW_PYTHON_VERSION" = "cp310" ]; then pip install pytest numpy; fi'
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
env:
CIBW_PRERELEASE_PYTHONS: True
CIBW_SKIP: "*-win32 *-manylinux_i686 *-manylinux*"
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-* cp312-*"
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-* cp312-* cp313-*"
CIBW_ARCHS_LINUX: "aarch64"
CIBW_BEFORE_TEST: 'if [ "$CIBW_PYTHON_VERSION" = "cp310" ]; then pip install pytest numpy; fi'
CIBW_TEST_COMMAND: 'if [ "$CIBW_PYTHON_VERSION" = "cp310" ]; then python -m pytest {package}/python/tests; fi'
Expand Down

0 comments on commit c81f372

Please sign in to comment.