diff options
| author | Juan Luis Cano RodrÃguez <juanlu001@gmail.com> | 2018-12-27 01:22:20 +0100 |
|---|---|---|
| committer | Ralf Gommers <ralf.gommers@gmail.com> | 2018-12-26 16:22:20 -0800 |
| commit | 4adf52ebde53e01a0b1ed7509b0add6ac4575044 (patch) | |
| tree | 74b6ab45f44f131c23a2690ba1301dd6a04af9a3 | |
| parent | d0aa124350a0b7754f68982e6ab50bf7be49610a (diff) | |
| download | numpy-4adf52ebde53e01a0b1ed7509b0add6ac4575044.tar.gz | |
BLD: Fix minimum Python version in setup.py (#12616)
* BLD: Fix minimum Python version in setup.py
See https://github.com/numpy/numpy/issues/12480 for discussion.
| -rwxr-xr-x | setup.py | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -33,8 +33,6 @@ if sys.version_info[:2] < (3, 5): import builtins -python_requires = '>=3.5' - CLASSIFIERS = """\ Development Status :: 5 - Production/Stable Intended Audience :: Science/Research @@ -371,7 +369,7 @@ def setup_package(): platforms = ["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"], test_suite='nose.collector', cmdclass={"sdist": sdist_checked}, - python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', + python_requires='>=3.5', zip_safe=False, entry_points={ 'console_scripts': f2py_cmds |
