From 0592c7a2536bc5523cf2d9fa8227b3b5743a2409 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 10 Sep 2024 11:06:30 +0200 Subject: [PATCH] also test on Python 3.13 --- .github/workflows/ci.yml | 5 ++++- pyproject.toml | 1 + tox.ini | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc22609..1130cba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,9 +46,12 @@ jobs: - os: ubuntu-22.04 python-version: '3.11' toxenv: py311 - - os: ubuntu-22.04 + - os: ubuntu-24.04 python-version: '3.12' toxenv: py312 + - os: ubuntu-24.04 + python-version: '3.13-dev' + toxenv: py313 env: TOXENV: ${{ matrix.toxenv }} diff --git a/pyproject.toml b/pyproject.toml index 2913c03..01e3d8e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", ] diff --git a/tox.ini b/tox.ini index c2517c6..7905e70 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ # tox configuration - if you change anything here, run this to verify: tox --recreate [tox] -envlist = py{39,310,311,312},flake8,mypy +envlist = py{39,310,311,312,313},flake8,mypy [testenv] deps = pytest