File tree Expand file tree Collapse file tree 4 files changed +13
-11
lines changed Expand file tree Collapse file tree 4 files changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ dependencies:
1515 - cfgrib=0.9
1616 - cftime=1.1
1717 - coveralls
18- - dask=2.15
19- - distributed=2.15
18+ - dask=2.24
19+ - distributed=2.24
2020 - h5netcdf=0.8
2121 - h5py=2.10
2222 - hdf5=1.10
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ dependencies:
77 # require drastically newer packages than everything else
88 - python=3.7
99 - coveralls
10- - dask=2.9
11- - distributed=2.9
10+ - dask=2.24
11+ - distributed=2.24
1212 - numpy=1.17
1313 - pandas=0.25
1414 - pint=0.15
Original file line number Diff line number Diff line change @@ -35,6 +35,14 @@ New Features
3535
3636Breaking changes
3737~~~~~~~~~~~~~~~~
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+ ============ ====== ====
3846
3947- The ``__repr__ `` of a :py:class: `xarray.Dataset `'s ``coords `` and ``data_vars ``
4048 ignore ``xarray.set_option(display_max_rows=...) `` and show the full output
Original file line number Diff line number Diff line change 3030from .alignment import align , deep_align
3131from .merge import merge_attrs , merge_coordinates_without_align
3232from .options import OPTIONS , _get_keep_attrs
33- from .pycompat import dask_version , is_duck_dask_array
33+ from .pycompat import is_duck_dask_array
3434from .utils import is_dict_like
3535from .variable import Variable
3636
@@ -715,12 +715,6 @@ def func(*arrays):
715715 ** dask_gufunc_kwargs ,
716716 )
717717
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-
724718 return res
725719
726720 elif dask == "allowed" :
You can’t perform that action at this time.
0 commit comments