From 3effa76e2d90c8ed84bdc4257bbd91ba4c56f2b3 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Wed, 13 Nov 2024 15:16:40 -0500 Subject: [PATCH] ENH: Test Python 3.13 --- .github/workflows/test_and_deploy.yml | 2 +- setup.cfg | 1 + tox.ini | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 9a420b8..a4c97eb 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: platform: [ubuntu-latest, windows-latest, macos-latest] - 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@v2 diff --git a/setup.cfg b/setup.cfg index f1a351a..0f4c307 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,6 +18,7 @@ classifiers = Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 Operating System :: OS Independent License :: OSI Approved :: Apache Software License diff --git a/tox.ini b/tox.ini index 8a577f3..d98a49c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ # For more information about tox, see https://tox.readthedocs.io/en/latest/ [tox] -envlist = py{39,310,311,312}-{linux,macos,windows} +envlist = py{39,310,311,312,313}-{linux,macos,windows} isolated_build=true [gh-actions] @@ -9,6 +9,7 @@ python = 3.10: py310 3.11: py311 3.12: py312 + 3.13: py313 [gh-actions:env] PLATFORM =