Skip to content

Commit a520bfd

Browse files
committed
Merge upstream and finalise
2 parents 26573c6 + 006476a commit a520bfd

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

.github/workflows/ci-osx.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
run: |
3939
conda activate env
4040
export CC=clang
41-
python setup.py build
41+
python -m pip install -U pip -r requirements_test.txt -r requirements.txt
42+
python -m pip install -v -e .
4243
4344
- name: Run tests
4445
shell: "bash -l {0}"

.github/workflows/ci-windows.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
run: |
3939
conda activate env
4040
export CC=clang
41-
python setup.py build
41+
python -m pip install -U pip -r requirements_test.txt -r requirements.txt
42+
python -m pip install -v -e .
4243
4344
- name: Run tests
4445
shell: "bash -l {0}"

docs/release.rst

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,28 @@
11
Release notes
22
=============
33

4-
.. _release_0.7.4:
4+
.. _unreleased:
55

6-
0.7.4
7-
-----
6+
Unreleased
7+
----------
88

99
* Add support for Python 3.9 and Update GitHub Actions.
1010

1111
* Add support for byte Shuffle filter
1212
By :user:`Paul Branson <pbranson>` and :user:`Martin Durant <mdurant>` :issue:`273`.
1313

14+
* Update Windows + Mac CI to run all tests.
15+
By :user:`Jackson Maxfield Brown <JacksonMaxfield>`, :issue:`276`.
16+
Help from :user:`Oleg Höfling <hoefling>`, :issue:`273`.
17+
>>>>>>> upstream/master
18+
1419
.. _release_0.7.3:
1520

1621
0.7.3
1722
-----
1823

1924
* Add support for Python 3.9 and Update GitHub Actions.
20-
By :user:`Jackson Maxfield <JacksonMaxfield>`, :issue:`270`.
25+
By :user:`Jackson Maxfield Brown <JacksonMaxfield>`, :issue:`270`.
2126

2227
* Remove support for Python 3.5 which is end of life. While the code base might
2328
still be compatible; the source dist and wheel are marked as Python 3.6+ and

numcodecs/__init__.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,8 @@
9292
from numcodecs.base64 import Base64
9393
register_codec(Base64)
9494

95-
try:
96-
from numcodecs import shuffle
97-
from numcodecs.shuffle import Shuffle
98-
register_codec(Shuffle)
99-
except ImportError: # pragma: no cover
100-
pass
95+
from numcodecs.shuffle import Shuffle
96+
register_codec(Shuffle)
10197

10298
try:
10399
from numcodecs.msgpacks import MsgPack

0 commit comments

Comments
 (0)