Skip to content

Commit 1e5c521

Browse files
committed
build: Require Python 3.10 minimum
1 parent c5bf04e commit 1e5c521

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description = "A Typescript handler for mkdocstrings."
88
authors = [{name = "Timothée Mazzucotelli", email = "[email protected]"}]
99
license = {text = "ISC"}
1010
readme = "README.md"
11-
requires-python = ">=3.9"
11+
requires-python = ">=3.10"
1212
keywords = []
1313
dynamic = ["version"]
1414
classifiers = [
@@ -17,7 +17,6 @@ classifiers = [
1717
"Programming Language :: Python",
1818
"Programming Language :: Python :: 3",
1919
"Programming Language :: Python :: 3 :: Only",
20-
"Programming Language :: Python :: 3.9",
2120
"Programming Language :: Python :: 3.10",
2221
"Programming Language :: Python :: 3.11",
2322
"Programming Language :: Python :: 3.12",

scripts/make.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from collections.abc import Iterator
1717

1818

19-
PYTHON_VERSIONS = os.getenv("PYTHON_VERSIONS", "3.9 3.10 3.11 3.12 3.13").split()
19+
PYTHON_VERSIONS = os.getenv("PYTHON_VERSIONS", "3.10 3.11 3.12 3.13").split()
2020

2121

2222
def shell(cmd: str, *, capture_output: bool = False, **kwargs: Any) -> str | None:

0 commit comments

Comments
 (0)