Skip to content

Commit 7a6b46c

Browse files
committed
Require Python 3.10
typeddjango#1253 switched this project to use the union type syntax ( https://peps.python.org/pep-0604/ ), which is only available in Python >=3.10. Earlier versions of Python have no support for this syntax.
1 parent a8e42cb commit 7a6b46c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def find_stub_files(name: str) -> List[str]:
5050
maintainer="Marti Raudsepp",
5151
maintainer_email="[email protected]",
5252
py_modules=[],
53-
python_requires=">=3.8",
53+
python_requires=">=3.10",
5454
install_requires=dependencies,
5555
extras_require=extras_require,
5656
packages=["django-stubs", *find_packages(exclude=["scripts"])],

0 commit comments

Comments
 (0)