|
11 | 11 | from setuptools.command.test import test as TestCommand |
12 | 12 | from setuptools.command.build_ext import build_ext as BuildExtCommand |
13 | 13 |
|
14 | | -if sys.version_info < (3, 5): |
| 14 | +if sys.version_info < (3, 6): |
15 | 15 | error = """ |
16 | | -Matplotlib 3.0+ does not support Python 2.x, 3.0, 3.1, 3.2, 3.3, or 3.4. |
17 | | -Beginning with Matplotlib 3.0, Python 3.5 and above is required. |
| 16 | +Beginning with Matplotlib 3.1, Python 3.6 or above is required. |
18 | 17 |
|
19 | 18 | This may be due to an out of date pip. |
20 | 19 |
|
|
82 | 81 | 'License :: OSI Approved :: Python Software Foundation License', |
83 | 82 | 'Programming Language :: Python', |
84 | 83 | 'Programming Language :: Python :: 3', |
85 | | - 'Programming Language :: Python :: 3.5', |
86 | 84 | 'Programming Language :: Python :: 3.6', |
87 | 85 | 'Programming Language :: Python :: 3.7', |
88 | 86 | 'Topic :: Scientific/Engineering :: Visualization', |
@@ -232,7 +230,7 @@ def build_extensions(self): |
232 | 230 | classifiers=classifiers, |
233 | 231 | download_url="http://matplotlib.org/users/installing.html", |
234 | 232 |
|
235 | | - python_requires='>=3.5', |
| 233 | + python_requires='>=3.6', |
236 | 234 | # List third-party Python packages that we require |
237 | 235 | install_requires=install_requires, |
238 | 236 | setup_requires=setup_requires, |
|
0 commit comments