From 680d4936111f6a0f7871eeba84d7e32ab1229b55 Mon Sep 17 00:00:00 2001 From: Patrick Kunzmann Date: Mon, 22 Sep 2025 11:05:02 +0200 Subject: [PATCH] Support Python 3.14 --- .github/workflows/test_and_deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index f66d69a..fe31a00 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -13,7 +13,7 @@ concurrency: cancel-in-progress: true env: - CIBW_BUILD: cp310-* cp311-* cp312-* cp313-* + CIBW_BUILD: cp311-* cp312-* cp313-* cp314-* CIBW_TEST_EXTRAS: test CIBW_TEST_COMMAND: pytest {project} CIBW_DEPENDENCY_VERSIONS: "pinned" @@ -48,7 +48,7 @@ jobs: - uses: actions/checkout@v4 - name: Install cibuildwheel # MAKE SURE THIS STAYS IN SYNC WITH THE LOWER GHA cibuildwheel - run: pipx install cibuildwheel==2.20.0 + run: pipx install cibuildwheel==3.1.4 - id: set-matrix # Select MacOS13/macos-latest-large for x86_64 Mac runners # and macos-latest for ARM @@ -101,7 +101,7 @@ jobs: - name: Build & (optionally) test wheels # MAKE SURE THIS STAYS IN SYNC WITH THE UPPER pipx call to cibuildwheel - uses: pypa/cibuildwheel@v2.20.0 + uses: pypa/cibuildwheel@v3.1.4 with: only: ${{ matrix.dist }}