From d01d40a3f225be3f18179d0e3266cf4e118892dc Mon Sep 17 00:00:00 2001 From: Ben Lopatin Date: Wed, 30 Oct 2024 14:29:46 -0400 Subject: [PATCH] Update Python versions supported --- .github/workflows/tests.yml | 2 +- setup.py | 3 ++- tox.ini | 6 +++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e8df05e..a50802c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ "3.8", "3.9", "3.10", "3.11" ] + python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ] steps: - uses: actions/checkout@v3 diff --git a/setup.py b/setup.py index 004acf9..d4523e4 100755 --- a/setup.py +++ b/setup.py @@ -42,10 +42,11 @@ "License :: OSI Approved :: BSD License", "Natural Language :: English", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "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", "Topic :: Internet :: WWW/HTTP", ], test_suite="tests", diff --git a/tox.ini b/tox.ini index a09d6fc..fe5d544 100644 --- a/tox.ini +++ b/tox.ini @@ -1,13 +1,13 @@ [tox] -envlist = py38, py39, py310, py311, flake8 +envlist = py39, py310, py311, py312, py313, flake8 [gh-actions] python = - 3.7: py37 - 3.8: py38 3.9: py39 3.10: py310 3.11: py311 + 3.12: py312 + 3.13: py313 [testenv] setenv =