You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Open the PyPI page for [Xarray downloads](https://pypi.org/project/xarray/#files)
97
-
- Clone the [pyodide repository](https://github.com/pyodide/pyodide).
98
-
- Edit `packages/xarray/meta.yaml` to update the
97
+
- Edit [`pyodide/packages/xarray/meta.yaml`](https://github.com/pyodide/pyodide/blob/main/packages/xarray/meta.yaml) to update the
98
+
- version number
99
99
- link to the wheel (under "Built Distribution" on the PyPI page)
100
100
- SHA256 hash (Click "Show Hashes" next to the link to the wheel)
Copy file name to clipboardExpand all lines: doc/whats-new.rst
+48-8
Original file line number
Diff line number
Diff line change
@@ -15,14 +15,51 @@ What's New
15
15
np.random.seed(123456)
16
16
17
17
18
-
.. _whats-new.2023.01.1:
18
+
.. _whats-new.2023.03.0:
19
19
20
-
v2023.01.1 (unreleased)
20
+
v2023.03.0 (unreleased)
21
21
-----------------------
22
22
23
23
New Features
24
24
~~~~~~~~~~~~
25
25
26
+
- Fix :py:meth:`xr.cov` and :py:meth:`xr.corr` now support complex valued arrays (:issue:`7340`, :pull:`7392`).
27
+
By `Michael Niklas <https://github.com/headtr1ck>`_.
28
+
29
+
Breaking changes
30
+
~~~~~~~~~~~~~~~~
31
+
32
+
33
+
Deprecations
34
+
~~~~~~~~~~~~
35
+
36
+
37
+
Bug fixes
38
+
~~~~~~~~~
39
+
- Require to explicitly defining optional dimensions such as hue
40
+
and markersize for scatter plots. (:issue:`7314`, :pull:`7277`).
41
+
By `Jimmy Westling <https://github.com/illviljan>`_.
42
+
- Fix matplotlib raising a UserWarning when plotting a scatter plot
43
+
with an unfilled marker (:issue:`7313`, :pull:`7318`).
44
+
By `Jimmy Westling <https://github.com/illviljan>`_.
45
+
46
+
Documentation
47
+
~~~~~~~~~~~~~
48
+
49
+
50
+
Internal Changes
51
+
~~~~~~~~~~~~~~~~
52
+
53
+
54
+
.. _whats-new.2023.02.0:
55
+
56
+
v2023.02.0 (Feb 7, 2023)
57
+
------------------------
58
+
59
+
This release brings a major upgrade to :py:func:`xarray.concat`, many bug fixes,
60
+
and a bump in supported dependency versions. Thanks to our 11 contributors:
61
+
Aron Gergely, Deepak Cherian, Illviljan, James Bourbeau, Joe Hamman,
62
+
Justus Magin, Hauke Schulz, Kai Mühlbauer, Ken Mankoff, Spencer Clark, Tom Nicholas.
26
63
27
64
Breaking changes
28
65
~~~~~~~~~~~~~~~~
@@ -45,7 +82,10 @@ Breaking changes
45
82
46
83
Deprecations
47
84
~~~~~~~~~~~~
48
-
85
+
- Following pandas, the `closed` parameters of :py:func:`cftime_range` and
86
+
:py:func:`date_range` are deprecated in favor of the `inclusive` parameters,
87
+
and will be removed in a future version of xarray (:issue:`6985`:,
88
+
:pull:`7373`). By `Spencer Clark <https://github.com/spencerkclark>`_.
49
89
50
90
Enhancements
51
91
~~~~~~~~~~~
@@ -55,22 +95,22 @@ Enhancements
55
95
56
96
Bug fixes
57
97
~~~~~~~~~
58
-
59
98
- :py:func:`xarray.concat` can now concatenate variables present in some datasets but
60
99
not others (:issue:`508`, :pull:`7400`).
61
100
By `Kai Mühlbauer <https://github.com/kmuehlbauer>`_ and `Scott Chamberlin <https://github.com/scottcha>`_.
62
101
- Handle ``keep_attrs`` option in binary operators of :py:meth:`Dataset` (:issue:`7390`, :pull:`7391`).
63
102
By `Aron Gergely <https://github.com/arongergely>`_.
103
+
- Improve error message when using dask in :py:func:`apply_ufunc` with ``output_sizes`` not supplied. (:pull:`7509`)
104
+
By `Tom Nicholas <https://github.com/TomNicholas>`_.
105
+
- :py:func:`xarray.Dataset.to_zarr` now drops variable encodings that have been added by xarray during reading
106
+
a dataset. (:issue:`7129`, :pull:`7500`).
107
+
By `Hauke Schulz <https://github.com/observingClouds>`_.
64
108
65
109
Documentation
66
110
~~~~~~~~~~~~~
67
-
68
111
- Mention the `flox package <https://flox.readthedocs.io>`_ in GroupBy documentation and docstrings.
69
112
By `Deepak Cherian <https://github.com/dcherian>`_.
0 commit comments