diff --git a/.github/workflows/publish_to_pypi_ci.yml b/.github/workflows/publish_to_pypi_ci.yml index f57214f..f783f74 100644 --- a/.github/workflows/publish_to_pypi_ci.yml +++ b/.github/workflows/publish_to_pypi_ci.yml @@ -28,6 +28,7 @@ jobs: env: CIBW_ARCHS_LINUX: ${{ matrix.arch }} CIBW_BUILD: cp${{ matrix.python-tag }}-manylinux_${{ matrix.arch }} + CIBW_TEST_SKIP: cp314-manylinux_aarch64 - uses: actions/upload-artifact@v7 with: name: wheels-${{ matrix.arch }}-cp${{ matrix.python-tag }} diff --git a/.github/workflows/test_on_pull_request.yml b/.github/workflows/test_on_pull_request.yml index c4f09cb..aca0dfe 100644 --- a/.github/workflows/test_on_pull_request.yml +++ b/.github/workflows/test_on_pull_request.yml @@ -10,12 +10,15 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, ubuntu-24.04-arm] - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] include: - os: ubuntu-latest arch: x86_64 - os: ubuntu-24.04-arm arch: aarch64 + exclude: + - os: ubuntu-24.04-arm + python-version: "3.14" steps: - uses: actions/checkout@v6