drop support for Python 3.8

This commit is contained in:
David Lord 2024-10-31 12:28:46 -07:00
parent e8b91cd38a
commit 1d610e44b3
No known key found for this signature in database
GPG key ID: 43368A7AA8CC5926
12 changed files with 25 additions and 42 deletions

View file

@ -19,7 +19,7 @@ classifiers = [
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"Werkzeug>=3.0.0",
"Jinja2>=3.1.2",
@ -78,7 +78,7 @@ source = ["flask", "tests"]
source = ["src", "*/site-packages"]
[tool.mypy]
python_version = "3.8"
python_version = "3.9"
files = ["src/flask", "tests/typing"]
show_error_codes = true
pretty = true
@ -94,7 +94,7 @@ module = [
ignore_missing_imports = true
[tool.pyright]
pythonVersion = "3.8"
pythonVersion = "3.9"
include = ["src/flask", "tests/typing"]
typeCheckingMode = "basic"