|
8 | 8 | import sys |
9 | 9 | from typing import TYPE_CHECKING, Any |
10 | 10 |
|
11 | | -if sys.version_info < (3, 8, 0): # noqa: UP036 |
12 | | - sys.stderr.write("ERROR: You need Python 3.8 or later to use mypy.\n") |
| 11 | +if sys.version_info < (3, 9, 0): |
| 12 | + sys.stderr.write("ERROR: You need Python 3.9 or later to use mypy.\n") |
13 | 13 | exit(1) |
14 | 14 |
|
15 | 15 | # we'll import stuff from the source tree, let's ensure is on the sys path |
@@ -185,7 +185,6 @@ def run(self): |
185 | 185 | "Intended Audience :: Developers", |
186 | 186 | "License :: OSI Approved :: MIT License", |
187 | 187 | "Programming Language :: Python :: 3", |
188 | | - "Programming Language :: Python :: 3.8", |
189 | 188 | "Programming Language :: Python :: 3.9", |
190 | 189 | "Programming Language :: Python :: 3.10", |
191 | 190 | "Programming Language :: Python :: 3.11", |
@@ -232,7 +231,7 @@ def run(self): |
232 | 231 | "reports": "lxml", |
233 | 232 | "install-types": "pip", |
234 | 233 | }, |
235 | | - python_requires=">=3.8", |
| 234 | + python_requires=">=3.9", |
236 | 235 | include_package_data=True, |
237 | 236 | project_urls={ |
238 | 237 | "Documentation": "https://mypy.readthedocs.io/en/stable/index.html", |
|
0 commit comments