Skip to content

Commit c177647

Browse files
committed
remove python 3.5 support
1 parent e172dcb commit c177647

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

docs/release.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Release notes
22
=============
33

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

611
0.7.2

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,9 @@ def run_setup(with_extensions):
318318
},
319319
ext_modules=ext_modules,
320320
cmdclass=cmdclass,
321-
package_dir={'': '.'},
322-
packages=['numcodecs', 'numcodecs.tests'],
321+
package_dir={"": "."},
322+
python_requires=">=3.6, <4",
323+
packages=["numcodecs", "numcodecs.tests"],
323324
classifiers=[
324325
'Development Status :: 4 - Beta',
325326
'Intended Audience :: Developers',
@@ -330,7 +331,6 @@ def run_setup(with_extensions):
330331
'Topic :: Software Development :: Libraries :: Python Modules',
331332
'Operating System :: Unix',
332333
'Programming Language :: Python :: 3',
333-
'Programming Language :: Python :: 3.5',
334334
'Programming Language :: Python :: 3.6',
335335
'Programming Language :: Python :: 3.7',
336336
'Programming Language :: Python :: 3.8',

0 commit comments

Comments
 (0)