Skip to content

Commit 2d331a8

Browse files
committed
End support for EOL python 3.5
Remove from CI and test configuration, setup.py, and tox.
1 parent 3ee5a5a commit 2d331a8

File tree

5 files changed

+7
-11
lines changed

5 files changed

+7
-11
lines changed

.travis.yml

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

2525
matrix:
2626
include:
27-
- python: 3.5
2827
- python: 3.6
2928
env: BUILD_DOCS='true'
3029
- 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: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Release notes
55
Next release
66
------------
77

8-
* Fix minor bug in `N5Store`.
8+
* Fix minor bug in `N5Store`.
99
By :user:`gsakkis`, :issue:`550`.
1010

1111
* Improve error message in Jupyter when trying to use the ``ipytree`` widget
@@ -15,10 +15,13 @@ Next release
1515
* Explicitly close stores during testing.
1616
By :user:`Elliott Sales de Andrade <QuLogic>`; :issue:`442`
1717

18-
* Improve consistency of terminology regarding arrays and datasets in the
18+
* Improve consistency of terminology regarding arrays and datasets in the
1919
documentation.
2020
By :user:`Josh Moore <joshmoore>`; :issue:`571`.
2121

22+
* End Python 3.5 support.
23+
By :user:`Chris Barnes <clbarnes>`; :issue:`602`.
24+
2225

2326
.. _release_2.4.0:
2427

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
import sys
3-
42
from setuptools import setup
53

64
DESCRIPTION = 'An implementation of chunked, compressed, ' \
@@ -36,7 +34,7 @@
3634
'ipytree',
3735
],
3836
},
39-
python_requires='>=3.5',
37+
python_requires='>=3.6, <4',
4038
install_requires=dependencies,
4139
package_dir={'': '.'},
4240
packages=['zarr', 'zarr.tests'],
@@ -50,7 +48,6 @@
5048
'Topic :: Software Development :: Libraries :: Python Modules',
5149
'Operating System :: Unix',
5250
'Programming Language :: Python :: 3',
53-
'Programming Language :: Python :: 3.5',
5451
'Programming Language :: Python :: 3.6',
5552
'Programming Language :: Python :: 3.7',
5653
'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)