Skip to content

End support for EOL python 3.5 #603

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 7, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -20,7 +20,6 @@ services:

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

matrix:

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

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

4 changes: 3 additions & 1 deletion docs/release.rst
Original file line number Diff line number Diff line change
@@ -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
-----
@@ -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
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, ' \
@@ -35,7 +33,7 @@
'ipytree',
],
},
python_requires='>=3.5',
python_requires='>=3.6, <4',
install_requires=dependencies,
package_dir={'': '.'},
packages=['zarr', 'zarr.tests'],
@@ -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',
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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}