From 2f06cf1e9caeb52c74b943c93784724c9d16f7a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez-Mondrag=C3=B3n?= Date: Tue, 8 Oct 2024 12:44:18 -0600 Subject: [PATCH] Test with declare support for Python up to 3.13 --- .github/workflows/test.yaml | 2 +- setup.py | 2 ++ tox.ini | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e140039e64..49097037cc 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.10", "3.11"] + python-version: ["3.7", "3.8", "3.10", "3.11", "3.12", "3.13"] include: - python-version: "3.9" use_coverage: 'coverage' diff --git a/setup.py b/setup.py index 74eb82d631..479332cde0 100644 --- a/setup.py +++ b/setup.py @@ -83,5 +83,7 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ], ) diff --git a/tox.ini b/tox.ini index b4657af698..6367e06b86 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = - py3{6,7,8,9} - py3{6,7,8,9}-functional + py3{6,7,8,9,10,11,12,13} + py3{6,7,8,9,10,11,12,13}-functional [testenv] passenv = TOXENV,CI,TRAVIS,TRAVIS_*