From 14e60890734ee3723d512e4277d48596129f1e89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaquier=20Aur=C3=A9lien=20Tristan?= Date: Fri, 1 Nov 2024 11:03:39 +0100 Subject: [PATCH] add tests and wheels for python 3.13 --- .github/workflows/build-wheels.yml | 2 +- .github/workflows/test.yml | 2 +- tox.ini | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index ebf2775c..b8701fd8 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -11,7 +11,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-22.04, macos-12, windows-latest] - python: [cp39, cp310, cp311, cp312] + python: [cp39, cp310, cp311, cp312, cp313] arch: [x86_64, amd64] exclude: - os: macos-12 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1f6f13e5..57fc502c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/tox.ini b/tox.ini index 5aa755d4..a611f166 100644 --- a/tox.ini +++ b/tox.ini @@ -7,6 +7,7 @@ python = 3.10: py3 3.11: py3 3.12: py3 + 3.13: py3 [testenv]