Skip to content

Commit 0c422e1

Browse files
authored
drop end of life python versions (#498)
2 parents 4270353 + 3f3b67b commit 0c422e1

File tree

4 files changed

+35
-194
lines changed

4 files changed

+35
-194
lines changed

.github/workflows/tests.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
- {python: '3.12'}
2121
- {python: '3.11'}
2222
- {python: '3.10'}
23-
- {python: '3.9'}
2423
- {name: PyPy, python: 'pypy-3.11', tox: pypy311}
2524
steps:
2625
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

CHANGES.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ Version 3.1.0
33

44
Unreleased
55

6+
- Drop support for Python 3.9.
7+
68

79
Version 3.0.3
810
-------------

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ classifiers = [
1616
"Topic :: Text Processing :: Markup :: HTML",
1717
"Typing :: Typed",
1818
]
19-
requires-python = ">=3.9"
19+
requires-python = ">=3.10"
2020

2121
[project.urls]
2222
Donate = "https://palletsprojects.com/donate"
@@ -83,14 +83,14 @@ exclude_also = [
8383
]
8484

8585
[tool.mypy]
86-
python_version = "3.9"
86+
python_version = "3.10"
8787
files = ["src", "tests"]
8888
show_error_codes = true
8989
pretty = true
9090
strict = true
9191

9292
[tool.pyright]
93-
pythonVersion = "3.9"
93+
pythonVersion = "3.10"
9494
include = ["src", "tests"]
9595
typeCheckingMode = "standard"
9696

@@ -124,7 +124,7 @@ tag-only = [
124124

125125
[tool.tox]
126126
env_list = [
127-
"py3.13", "py3.13t", "py3.12", "py3.11", "py3.10", "py3.9",
127+
"py3.13", "py3.13t", "py3.12", "py3.11", "py3.10",
128128
"pypy3.11",
129129
"style",
130130
"typing",

0 commit comments

Comments
 (0)