diff options
| author | Charles Harris <charlesr.harris@gmail.com> | 2020-12-02 13:35:57 -0700 |
|---|---|---|
| committer | Charles Harris <charlesr.harris@gmail.com> | 2020-12-02 13:35:57 -0700 |
| commit | 88be44bacffeb336317e51c5199e1ef6e41ee183 (patch) | |
| tree | e97d381e537423516f49e5a4bc996c32071d2efb /setup.py | |
| parent | 33dc7bea24f1ab6c47047b49521e732caeb485d5 (diff) | |
| download | numpy-88be44bacffeb336317e51c5199e1ef6e41ee183.tar.gz | |
MAINT: Remove remaining uses of Python 3.6.
We missed a few first time around.
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -26,8 +26,8 @@ import textwrap import warnings -if sys.version_info[:2] < (3, 6): - raise RuntimeError("Python version >= 3.6 required.") +if sys.version_info[:2] < (3, 7): + raise RuntimeError("Python version >= 3.7 required.") import builtins @@ -40,7 +40,6 @@ License :: OSI Approved :: BSD License Programming Language :: C Programming Language :: Python Programming Language :: Python :: 3 -Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 @@ -473,7 +472,7 @@ def setup_package(): platforms=["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"], test_suite='pytest', cmdclass=cmdclass, - python_requires='>=3.6', + python_requires='>=3.7', zip_safe=False, entry_points={ 'console_scripts': f2py_cmds |
