Skip to content

Commit d425e41

Browse files
authored
Merge branch 'master' into issue_269_c_blosc_upgrade
2 parents 6df653b + 9eac7b1 commit d425e41

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

docs/release.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ Release notes
66
Unreleased
77
----------
88

9+
.. _release_0.8.1:
10+
11+
0.8.1
12+
-----
13+
14+
* Fix an ImportError with Blosc on Android.
15+
By :user:`Daniel Jewell <danieldjewell>`, :issue:`284`.
16+
917
.. _release_0.8.0:
1018

1119
0.8.0

numcodecs/blosc.pyx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ try:
7979
mutex = multiprocessing.Lock()
8080
except OSError:
8181
mutex = None
82+
except ImportError:
83+
mutex = None
8284

8385
# store ID of process that first loads the module, so we can detect a fork later
8486
_importer_pid = os.getpid()

0 commit comments

Comments
 (0)