Skip to content

Commit f6f03f2

Browse files
authored
officially support newer versions of python (#135)
* test on `python=3.12` * add classifiers * add `python=3.13`
1 parent a1e9fc2 commit f6f03f2

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: ["3.9", "3.10", "3.11"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1818
sphinx-version: ["5.3", "6.0", "6.1"]
1919

2020
steps:

pyproject.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ authors = [
77
]
88
readme = "README.rst"
99
requires-python = ">=3.9"
10+
classifiers = [
11+
"License :: OSI Approved :: MIT",
12+
"Operating System :: OS Independent",
13+
"Programming Language :: Python :: 3",
14+
"Programming Language :: Python :: 3.9",
15+
"Programming Language :: Python :: 3.10",
16+
"Programming Language :: Python :: 3.11",
17+
"Programming Language :: Python :: 3.12",
18+
"Programming Language :: Python :: 3.13",
19+
]
1020
dependencies = [
1121
"sphinx >= 5.3",
1222
]

0 commit comments

Comments
 (0)