From 1f23c7ac17ce55076771f149a1ff18bf7b3cbec5 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 7 Oct 2024 23:01:58 +0200 Subject: [PATCH] build: also test with Python 3.13 --- .github/workflows/tests.yml | 7 ++++--- tox.ini | 3 ++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 005d76f..b9eae7e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,12 +17,13 @@ jobs: fail-fast: false matrix: python-version: - - 3.7 - - 3.8 - - 3.9 + - "3.7" + - "3.8" + - "3.9" - "3.10" - "3.11" - "3.12" + - "3.13" steps: - uses: actions/checkout@v4 with: diff --git a/tox.ini b/tox.ini index 7e7f613..bce7111 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{34,35,36,37,38,39,310,311,312}{,-ipython},lint,doc +envlist = py{34,35,36,37,38,39,310,311,312,313}{,-ipython},lint,doc skip_missing_interpreters = True [gh-actions] @@ -11,6 +11,7 @@ python = 3.10: py310 3.11: py311 3.12: py312 + 3.13: py313 [testenv] allowlist_externals = make