We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6df653b + 9eac7b1 commit d425e41Copy full SHA for d425e41
docs/release.rst
@@ -6,6 +6,14 @@ Release notes
6
Unreleased
7
----------
8
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
17
.. _release_0.8.0:
18
19
0.8.0
numcodecs/blosc.pyx
@@ -79,6 +79,8 @@ try:
79
mutex = multiprocessing.Lock()
80
except OSError:
81
mutex = None
82
+except ImportError:
83
+ mutex = None
84
85
# store ID of process that first loads the module, so we can detect a fork later
86
_importer_pid = os.getpid()
0 commit comments