From f6f03f2845c37b4d7e9d194dffbc3ce9ce824088 Mon Sep 17 00:00:00 2001 From: Justus Magin Date: Mon, 3 Feb 2025 12:23:08 +0100 Subject: [PATCH] officially support newer versions of python (#135) * test on `python=3.12` * add classifiers * add `python=3.13` --- .github/workflows/ci.yaml | 2 +- pyproject.toml | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 13bc09e..11a58ea 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] sphinx-version: ["5.3", "6.0", "6.1"] steps: diff --git a/pyproject.toml b/pyproject.toml index 0005314..6e5b421 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,6 +7,16 @@ authors = [ ] readme = "README.rst" requires-python = ">=3.9" +classifiers = [ + "License :: OSI Approved :: MIT", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3", + "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", +] dependencies = [ "sphinx >= 5.3", ]