File tree 2 files changed +8
-3
lines changed 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
Release notes
2
2
=============
3
3
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
+
4
9
.. _release_0.7.2 :
5
10
6
11
0.7.2
Original file line number Diff line number Diff line change @@ -318,8 +318,9 @@ def run_setup(with_extensions):
318
318
},
319
319
ext_modules = ext_modules ,
320
320
cmdclass = cmdclass ,
321
- package_dir = {'' : '.' },
322
- packages = ['numcodecs' , 'numcodecs.tests' ],
321
+ package_dir = {"" : "." },
322
+ python_requires = ">=3.6, <4" ,
323
+ packages = ["numcodecs" , "numcodecs.tests" ],
323
324
classifiers = [
324
325
'Development Status :: 4 - Beta' ,
325
326
'Intended Audience :: Developers' ,
@@ -330,7 +331,6 @@ def run_setup(with_extensions):
330
331
'Topic :: Software Development :: Libraries :: Python Modules' ,
331
332
'Operating System :: Unix' ,
332
333
'Programming Language :: Python :: 3' ,
333
- 'Programming Language :: Python :: 3.5' ,
334
334
'Programming Language :: Python :: 3.6' ,
335
335
'Programming Language :: Python :: 3.7' ,
336
336
'Programming Language :: Python :: 3.8' ,
You can’t perform that action at this time.
0 commit comments