Skip to content

Commit d30326b

Browse files
authored
Merge pull request #603 from clbarnes/deprecate-35
2 parents 99413d4 + f8cef03 commit d30326b

File tree

5 files changed

+5
-10
lines changed

5 files changed

+5
-10
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ services:
2020

2121
matrix:
2222
include:
23-
- python: 3.5
2423
- python: 3.6
2524
env: BUILD_DOCS='true'
2625
- python: 3.7

appveyor.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ environment:
1818

1919
matrix:
2020

21-
- PYTHON: "C:\\Python35-x64"
22-
PYTHON_VERSION: "3.5"
23-
2421
- PYTHON: "C:\\Python36-x64"
2522
PYTHON_VERSION: "3.6"
2623

docs/release.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Next Release
77

88
This release will be the first release of Zarr not supporting Python 3.5.
99

10+
* End Python 3.5 support.
11+
By :user:`Chris Barnes <clbarnes>`; :issue:`602`.
1012

1113
2.5.0
1214
-----
@@ -20,7 +22,7 @@ This release will be the last to support Python 3.5, next version of Zarr will b
2022
* Remove a few remaining Python 2-isms.
2123
By :user:`Poruri Sai Rahul <rahulporuri>`; :issue:`393`.
2224

23-
* Fix minor bug in `N5Store`.
25+
* Fix minor bug in `N5Store`.
2426
By :user:`gsakkis`, :issue:`550`.
2527

2628
* Improve error message in Jupyter when trying to use the ``ipytree`` widget

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import sys
2-
31
from setuptools import setup
42

53
DESCRIPTION = 'An implementation of chunked, compressed, ' \
@@ -35,7 +33,7 @@
3533
'ipytree',
3634
],
3735
},
38-
python_requires='>=3.5',
36+
python_requires='>=3.6, <4',
3937
install_requires=dependencies,
4038
package_dir={'': '.'},
4139
packages=['zarr', 'zarr.tests'],
@@ -49,7 +47,6 @@
4947
'Topic :: Software Development :: Libraries :: Python Modules',
5048
'Operating System :: Unix',
5149
'Programming Language :: Python :: 3',
52-
'Programming Language :: Python :: 3.5',
5350
'Programming Language :: Python :: 3.6',
5451
'Programming Language :: Python :: 3.7',
5552
'Programming Language :: Python :: 3.8',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py35, py36, py37-npy{115,116,latest}, py38, docs
7+
envlist = py36, py37-npy{115,116,latest}, py38, docs
88

99
[testenv]
1010
install_command = pip install --no-binary=numcodecs {opts} {packages}

0 commit comments

Comments
 (0)