File tree 4 files changed +13
-11
lines changed 4 files changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ dependencies:
15
15
- cfgrib=0.9
16
16
- cftime=1.1
17
17
- coveralls
18
- - dask=2.15
19
- - distributed=2.15
18
+ - dask=2.24
19
+ - distributed=2.24
20
20
- h5netcdf=0.8
21
21
- h5py=2.10
22
22
- hdf5=1.10
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ dependencies:
7
7
# require drastically newer packages than everything else
8
8
- python=3.7
9
9
- coveralls
10
- - dask=2.9
11
- - distributed=2.9
10
+ - dask=2.24
11
+ - distributed=2.24
12
12
- numpy=1.17
13
13
- pandas=0.25
14
14
- pint=0.15
Original file line number Diff line number Diff line change @@ -35,6 +35,14 @@ New Features
35
35
36
36
Breaking changes
37
37
~~~~~~~~~~~~~~~~
38
+ - The minimum versions of some dependencies were changed:
39
+
40
+ ============ ====== ====
41
+ Package Old New
42
+ ============ ====== ====
43
+ dask 2.15 2.24
44
+ distributed 2.15 2.24
45
+ ============ ====== ====
38
46
39
47
- The ``__repr__ `` of a :py:class: `xarray.Dataset `'s ``coords `` and ``data_vars ``
40
48
ignore ``xarray.set_option(display_max_rows=...) `` and show the full output
Original file line number Diff line number Diff line change 30
30
from .alignment import align , deep_align
31
31
from .merge import merge_attrs , merge_coordinates_without_align
32
32
from .options import OPTIONS , _get_keep_attrs
33
- from .pycompat import dask_version , is_duck_dask_array
33
+ from .pycompat import is_duck_dask_array
34
34
from .utils import is_dict_like
35
35
from .variable import Variable
36
36
@@ -715,12 +715,6 @@ def func(*arrays):
715
715
** dask_gufunc_kwargs ,
716
716
)
717
717
718
- # todo: covers for https://github.com/dask/dask/pull/6207
719
- # remove when minimal dask version >= 2.17.0
720
- if dask_version < "2.17.0" :
721
- if signature .num_outputs > 1 :
722
- res = tuple (res )
723
-
724
718
return res
725
719
726
720
elif dask == "allowed" :
You can’t perform that action at this time.
0 commit comments