Skip to content

Commit

Permalink
BLD: Fix minimum Python version in setup.py (numpy#12616)
Browse files Browse the repository at this point in the history
* BLD: Fix minimum Python version in setup.py

See numpy#12480 for discussion.
  • Loading branch information
astrojuanlu authored and rgommers committed Dec 27, 2018
1 parent d0aa124 commit 4adf52e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@
import builtins


python_requires = '>=3.5'

CLASSIFIERS = """\
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 4adf52e

Please sign in to comment.