Skip to content

Commit b41a2c6

Browse files
committed
Officially drop support for Python 3.9
Part of #13782
1 parent c013563 commit b41a2c6

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ the project the stubs are for, but instead report them here to typeshed.**
2121
Further documentation on stub files, typeshed, and Python's typing system in
2222
general, can also be found at https://typing.readthedocs.io/en/latest/.
2323

24-
Typeshed supports Python versions 3.9 to 3.14.
24+
Typeshed supports Python versions 3.10 to 3.14.
2525

2626
## Using
2727

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# https://github.com/astral-sh/uv/issues/8666
44
name = "typeshed"
55
version = "0"
6-
requires-python = ">=3.9" # Minimum version to run tests, used by uv run
6+
requires-python = ">=3.10" # Minimum version to run tests, used by uv run
77

88
[tool.black]
99
line-length = 130
@@ -13,7 +13,7 @@ skip-magic-trailing-comma = true
1313
[tool.ruff]
1414
line-length = 130
1515
# Oldest supported Python version
16-
target-version = "py39"
16+
target-version = "py310"
1717
fix = true
1818
exclude = [
1919
# virtual environment
@@ -263,4 +263,4 @@ extra-standard-library = [
263263
known-first-party = ["_utils", "ts_utils"]
264264

265265
[tool.typeshed]
266-
oldest_supported_python = "3.9"
266+
oldest_supported_python = "3.10"

0 commit comments

Comments
 (0)