File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ v0.8.2 (unreleased)
20
20
21
21
Enhancements
22
22
~~~~~~~~~~~~
23
+
23
24
- New documentation on :ref: `panel transition `. By
24
25
`Maximilian Roos <https://github.com/MaximilianR >`_.
25
26
- New ``Dataset `` and ``DataArray `` methods :py:meth: `to_dict ` and
@@ -30,13 +31,15 @@ Enhancements
30
31
Bug fixes
31
32
~~~~~~~~~
32
33
33
- - Fix to ensure xarray works with h5netcdf v0.3.0 for arrays with ``dtype=str ``
34
+ - Ensure xarray works with h5netcdf v0.3.0 for arrays with ``dtype=str ``
34
35
(:issue: `953 `). By `Stephan Hoyer <https://github.com/shoyer >`_.
35
- - ``Dataset.__dir__() `` (i.e. the method python calls to get autocomplete options) failed
36
- if one of the dataset's keys was not a string (:issue: `852 `). By
37
- `Maximilian Roos <https://github.com/maximilianr >`_.
38
- - ``Dataset `` constructor can now take arbitrary objects as values (:issue: `647 `)
39
-
36
+ - ``Dataset.__dir__() `` (i.e. the method python calls to get autocomplete
37
+ options) failed if one of the dataset's keys was not a string (:issue: `852 `).
38
+ By `Maximilian Roos <https://github.com/maximilianr >`_.
39
+ - ``Dataset `` constructor can now take arbitrary objects as values
40
+ (:issue: `647 `). By `Maximilian Roos <https://github.com/maximilianr >`_.
41
+ - Fix ``open_mfdataset `` with ``engine='pynio' `` (:issue: `936 `).
42
+ By `Stephan Hoyer <https://github.com/shoyer >`_.
40
43
41
44
.. _whats-new.0.8.1 :
42
45
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ def _default_lock(filename, engine):
56
56
# TODO: identify netcdf3 files and don't use the global lock
57
57
# for them
58
58
lock = _global_lock
59
- elif engine == 'h5netcdf' :
59
+ elif engine in { 'h5netcdf' , 'pynio' } :
60
60
lock = _global_lock
61
61
else :
62
62
lock = False
You can’t perform that action at this time.
0 commit comments