|
5 | 5 | import os.path
|
6 | 6 | import sys
|
7 | 7 |
|
8 |
| -if sys.version_info < (3, 6, 0): |
9 |
| - sys.stderr.write("ERROR: You need Python 3.6 or later to use mypy.\n") |
| 8 | +if sys.version_info < (3, 7, 0): |
| 9 | + sys.stderr.write("ERROR: You need Python 3.7 or later to use mypy.\n") |
10 | 10 | exit(1)
|
11 | 11 |
|
12 | 12 | # we'll import stuff from the source tree, let's ensure is on the sys path
|
@@ -174,7 +174,6 @@ def run(self):
|
174 | 174 | "Intended Audience :: Developers",
|
175 | 175 | "License :: OSI Approved :: MIT License",
|
176 | 176 | "Programming Language :: Python :: 3",
|
177 |
| - "Programming Language :: Python :: 3.6", |
178 | 177 | "Programming Language :: Python :: 3.7",
|
179 | 178 | "Programming Language :: Python :: 3.8",
|
180 | 179 | "Programming Language :: Python :: 3.9",
|
@@ -219,7 +218,7 @@ def run(self):
|
219 | 218 | "python2": "typed_ast >= 1.4.0, < 2",
|
220 | 219 | "reports": "lxml",
|
221 | 220 | },
|
222 |
| - python_requires=">=3.6", |
| 221 | + python_requires=">=3.7", |
223 | 222 | include_package_data=True,
|
224 | 223 | project_urls={
|
225 | 224 | "News": "http://mypy-lang.org/news.html",
|
|
0 commit comments