Skip to content

Commit

Permalink
officially support newer versions of python (#135)
Browse files Browse the repository at this point in the history
* test on `python=3.12`

* add classifiers

* add `python=3.13`
  • Loading branch information
keewis authored Feb 3, 2025
1 parent a1e9fc2 commit f6f03f2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]
Expand Down

0 comments on commit f6f03f2

Please sign in to comment.