Skip to content

Commit

Permalink
Remove Python 3.6 support in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
takluyver committed Oct 30, 2020
1 parent c4d8bff commit 0748060
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
# Minimum supported versions of Numpy & Cython depend on the Python version
NUMPY_MIN_VERSIONS = [
# Numpy Python
('1.12', "=='3.6'"),
('1.14.5', "=='3.7'"),
('1.17.5', "=='3.8'"),
('1.19.3', ">='3.9'"),
Expand Down Expand Up @@ -122,8 +121,6 @@ def run(self):
Programming Language :: Cython
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering
Topic :: Database
Expand Down Expand Up @@ -179,6 +176,6 @@ def run(self):
ext_modules = [Extension('h5py.x',['x.c'])], # To trick build into running build_ext
install_requires = RUN_REQUIRES,
setup_requires = SETUP_REQUIRES,
python_requires='>=3.6',
python_requires='>=3.7',
cmdclass = CMDCLASS,
)

0 comments on commit 0748060

Please sign in to comment.