diff --git a/.github/workflows/build_wheels.yaml b/.github/workflows/build_wheels.yaml index 3e7fb6e..2f08180 100644 --- a/.github/workflows/build_wheels.yaml +++ b/.github/workflows/build_wheels.yaml @@ -64,11 +64,10 @@ jobs: fail-fast: false matrix: os: [windows-latest] - cibw_build: ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"] + cibw_build: ["cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*"] cibw_archs: ["AMD64", "x86", "ARM64"] exclude: - os: windows-latest - cibw_build: "cp38-*" cibw_archs: "ARM64" env: PYTHON: 3.12 @@ -116,7 +115,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - cibw_build: ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"] + cibw_build: ["cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*"] cibw_archs: ["x86_64", "i686", "aarch64", "ppc64le"] env: PYTHON: 3.12 @@ -164,7 +163,7 @@ jobs: fail-fast: false matrix: os: [macos-13] - cibw_build: ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"] + cibw_build: ["cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*"] cibw_archs: ["x86_64"] env: PYTHON: 3.12 @@ -205,7 +204,7 @@ jobs: strategy: matrix: os: [macos-13] - cibw_build: ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"] + cibw_build: ["cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*"] cibw_archs: ["arm64"] steps: diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 23683a7..97cc959 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -25,7 +25,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-13, windows-latest] - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] env: OS: ${{ matrix.os }} PYTHON: ${{ matrix.python-version }}