summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-08-13 09:53:41 -0600
committerCharles Harris <charlesr.harris@gmail.com>2021-08-16 10:43:46 -0600
commit9a176d0f9e758ccc825669515970f5d7d8d3393a (patch)
tree78c1d1b2d682ee33cd6544276cc4d6a4b0060ae5 /setup.py
parentb8f7fb2c2c6aa80f40db5ce281d9b3597a192845 (diff)
downloadnumpy-9a176d0f9e758ccc825669515970f5d7d8d3393a.tar.gz
MAINT: Drop Python 3.7 from setup.py
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 826610466..245c23676 100755
--- a/setup.py
+++ b/setup.py
@@ -30,8 +30,9 @@ import re
# Python supported version checks. Keep right after stdlib imports to ensure we
# get a sensible error for older Python versions
+# This needs to be changed to 3.8 for 1.22 release, but 3.7 is needed for LGTM.
if sys.version_info[:2] < (3, 7):
- raise RuntimeError("Python version >= 3.7 required.")
+ raise RuntimeError("Python version >= 3.8 required.")
import versioneer
@@ -90,9 +91,9 @@ License :: OSI Approved :: BSD License
Programming Language :: C
Programming Language :: Python
Programming Language :: Python :: 3
-Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
+Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development
@@ -405,7 +406,7 @@ def setup_package():
test_suite='pytest',
version=versioneer.get_version(),
cmdclass=cmdclass,
- python_requires='>=3.7',
+ python_requires='>=3.8',
zip_safe=False,
entry_points={
'console_scripts': f2py_cmds