File tree 3 files changed +5
-1
lines changed
3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -220,6 +220,7 @@ Reshaping and reorganizing
220
220
Dataset.to_stacked_array
221
221
Dataset.shift
222
222
Dataset.roll
223
+ Dataset.pad
223
224
Dataset.sortby
224
225
Dataset.broadcast_like
225
226
@@ -399,6 +400,7 @@ Reshaping and reorganizing
399
400
DataArray.to_unstacked_dataset
400
401
DataArray.shift
401
402
DataArray.roll
403
+ DataArray.pad
402
404
DataArray.sortby
403
405
DataArray.broadcast_like
404
406
Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ Breaking changes
25
25
26
26
New Features
27
27
~~~~~~~~~~~~
28
+ - Implement :py:meth: `DataArray.pad ` and :py:meth: `Dataset.pad `. (:issue: `2605 `).
29
+ By `Mark Boer <https://github.com/mark-boer >`_.
28
30
- Implement :py:func: `median ` and :py:func: `nanmedian ` for dask arrays. This works by rechunking
29
31
to a single chunk along all reduction axes. (:issue: `2999 `).
30
32
By `Deepak Cherian <https://github.com/dcherian >`_.
Original file line number Diff line number Diff line change @@ -792,7 +792,7 @@ def test_getitem_error(self):
792
792
pytest .param ("median" , marks = pytest .mark .xfail ),
793
793
pytest .param ("reflect" , marks = pytest .mark .xfail ),
794
794
"edge" ,
795
- "linear_ramp" ,
795
+ pytest . param ( "linear_ramp" , marks = pytest . mark . xfail ) ,
796
796
"maximum" ,
797
797
"minimum" ,
798
798
"symmetric" ,
You can’t perform that action at this time.
0 commit comments