Skip to content

Commit 32c18e5

Browse files
Drop Python 3.8 support
1 parent 1210eab commit 32c18e5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["setuptools >= 41"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.black]
6-
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
6+
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']
77
exclude = '''
88
/(
99
\.git

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@
3636
"Topic :: Internet :: WWW/HTTP :: WSGI",
3737
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
3838
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
39-
"Programming Language :: Python :: 3.8",
4039
"Programming Language :: Python :: 3.9",
4140
"Programming Language :: Python :: 3.10",
4241
"Programming Language :: Python :: 3.11",
4342
"Programming Language :: Python :: 3.12",
43+
"Programming Language :: Python :: 3.13",
4444
"Programming Language :: Python :: Implementation :: CPython",
4545
"Programming Language :: Python :: Implementation :: PyPy",
4646
],
@@ -52,7 +52,7 @@
5252
license="MIT",
5353
packages=find_packages("src", exclude=["tests"]),
5454
package_dir={"": "src"},
55-
python_requires=">=3.8",
55+
python_requires=">=3.9.0",
5656
install_requires=[
5757
"legacy-cgi>=2.6; python_version>='3.13'",
5858
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
lint,
4-
py38,py39,py310,py311,py312,py313,pypy39,pypy310,
4+
py39,py310,py311,py312,py313,pypy39,pypy310,
55
coverage,
66
docs,
77
isolated_build = True

0 commit comments

Comments
 (0)