Skip to content

Commit 559cd6e

Browse files
authored
Merge pull request #5 from jakirkham/fix_pr_87_conflicts
Fix conflicts with upstream `master`
2 parents a62fa59 + ee64853 commit 559cd6e

14 files changed

+8566
-9507
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ coverage.xml
4949
.hypothesis/
5050
cover/
5151

52+
# Cython annotation files
53+
numcodecs/*.html
54+
5255
# Translations
5356
*.mo
5457
*.pot

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ addons:
1313

1414
python:
1515
- 2.7
16-
- 3.4
1716
- 3.5
1817
- 3.6
1918

appveyor.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,6 @@ environment:
1919
PYTHON_VERSION: "2.7"
2020
DISTUTILS_USE_SDK: "1"
2121

22-
- PYTHON: "C:\\Python34"
23-
PYTHON_VERSION: "3.4"
24-
25-
- PYTHON: "C:\\Python34-x64"
26-
PYTHON_VERSION: "3.4"
27-
DISTUTILS_USE_SDK: "1"
28-
2922
- PYTHON: "C:\\Python35"
3023
PYTHON_VERSION: "3.5"
3124

docs/contributing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,9 @@ To also run the doctests within docstrings, run::
145145
Tests can be run under different Python versions using tox. E.g. (assuming you have the
146146
corresponding Python interpreters installed on your system)::
147147

148-
$ tox -e py27,py34,py35,py36
148+
$ tox -e py27,py35,py36
149149

150-
NumCodecs currently supports Python 2.7 and Python 3.4-3.6, so the above command must
150+
NumCodecs currently supports Python 2.7 and Python 3.5-3.6, so the above command must
151151
succeed before code can be accepted into the main code base. Note that only the py36
152152
tox environment runs the doctests, i.e., doctests only need to succeed under Python 3.6.
153153

docs/release.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ Release notes
1818
* Updated the msgpack dependency (by :user:`Jerome Kelleher <jeromekelleher>`;
1919
:issue:`74`, :issue:`75`).
2020

21+
* Drop Python 3.4 (by :user:`John Kirkham <jakirkham>`; :issue:`89`).
22+
2123
* Add codec :class:`GZip` to replace ``gzip`` alias for ``zlib``.
2224

2325
.. _release_0.5.5:

0 commit comments

Comments
 (0)