Skip to content

Commit

Permalink
remove python 3.5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau committed Jan 7, 2021
1 parent e172dcb commit c177647
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions docs/release.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Release notes
=============

* Remove support for Python 3.5 which is end of life. While the code base might
still be compatible; the source dist and wheel are marked as Python 3.6+ and
pip will not install them. Continuous integration on Python 3.5 has been
disabled.

.. _release_0.7.2:

0.7.2
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,9 @@ def run_setup(with_extensions):
},
ext_modules=ext_modules,
cmdclass=cmdclass,
package_dir={'': '.'},
packages=['numcodecs', 'numcodecs.tests'],
package_dir={"": "."},
python_requires=">=3.6, <4",
packages=["numcodecs", "numcodecs.tests"],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
Expand All @@ -330,7 +331,6 @@ def run_setup(with_extensions):
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down

0 comments on commit c177647

Please sign in to comment.