Skip to content

Commit

Permalink
Merge pull request #603 from clbarnes/deprecate-35
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau authored Oct 7, 2020
2 parents 99413d4 + f8cef03 commit d30326b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ services:

matrix:
include:
- python: 3.5
- python: 3.6
env: BUILD_DOCS='true'
- python: 3.7
Expand Down
3 changes: 0 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ environment:

matrix:

- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5"

- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6"

Expand Down
4 changes: 3 additions & 1 deletion docs/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Next Release

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

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

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

* Fix minor bug in `N5Store`.
* Fix minor bug in `N5Store`.
By :user:`gsakkis`, :issue:`550`.

* Improve error message in Jupyter when trying to use the ``ipytree`` widget
Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import sys

from setuptools import setup

DESCRIPTION = 'An implementation of chunked, compressed, ' \
Expand Down Expand Up @@ -35,7 +33,7 @@
'ipytree',
],
},
python_requires='>=3.5',
python_requires='>=3.6, <4',
install_requires=dependencies,
package_dir={'': '.'},
packages=['zarr', 'zarr.tests'],
Expand All @@ -49,7 +47,6 @@
'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
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

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

[testenv]
install_command = pip install --no-binary=numcodecs {opts} {packages}
Expand Down

0 comments on commit d30326b

Please sign in to comment.