diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index 9213d3d..e5d6042 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/setup-python@v3 - name: Install cibuildwheel - run: python -m pip install cibuildwheel==2.12.3 + run: python -m pip install cibuildwheel==2.16.2 # We need docker's cross architecture emulation to build ARM wheels. - if: startsWith(matrix.os, 'ubuntu') @@ -32,7 +32,7 @@ jobs: env: # Platform options CIBW_ARCHS_MACOS: "x86_64 arm64" - CIBW_PROJECT_REQUIRES_PYTHON: ">=3.7,<3.12" + CIBW_PROJECT_REQUIRES_PYTHON: ">=3.7,<3.13" CIBW_SKIP: "pp* *-musllinux_*" # Skip PyPy and musl. CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014" CIBW_ARCHS_LINUX: x86_64 aarch64 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1701705..de00a3f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.7, 3.8, 3.9, '3.10', 3.11] + python-version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12] fail-fast: false steps: