summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2020-12-02 13:35:57 -0700
committerCharles Harris <charlesr.harris@gmail.com>2020-12-02 13:35:57 -0700
commit88be44bacffeb336317e51c5199e1ef6e41ee183 (patch)
treee97d381e537423516f49e5a4bc996c32071d2efb /setup.py
parent33dc7bea24f1ab6c47047b49521e732caeb485d5 (diff)
downloadnumpy-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-xsetup.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index 326d34e7a..528b4f1e4 100755
--- a/setup.py
+++ b/setup.py
@@ -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