From 798036b82bed8210091ddd61afc58f5cbe4f67ac Mon Sep 17 00:00:00 2001 From: Jens Scheffler Date: Fri, 17 Oct 2025 23:09:04 +0200 Subject: [PATCH] Add Python 3.13 support, drop 3.8 --- .github/workflows/ci.yml | 2 +- noxfile.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bdc44e1..ea9470c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: - name: Setup Nox uses: wntrblm/nox@2024.04.15 with: - python-versions: "3.8, 3.9, 3.10, 3.11, 3.12" + python-versions: "3.9, 3.10, 3.11, 3.12, 3.13" - name: Run Nox run: nox -t test diff --git a/noxfile.py b/noxfile.py index 38f48f2..97a87b5 100644 --- a/noxfile.py +++ b/noxfile.py @@ -1,7 +1,7 @@ import nox -@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12"], tags=["test"]) +@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"], tags=["test"]) def test(session: nox.Session) -> None: session.install(".", ".[dev]") session.run("pytest", "-n", "4") diff --git a/pyproject.toml b/pyproject.toml index b08b963..43a1df0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,11 +19,11 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "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", "Topic :: Utilities", ]