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
* main:
exclude the bots from the release notes (pydata#9235)
switch the documentation to run with `numpy>=2` (pydata#9177)
`numpy` 2 compatibility in the iris code paths (pydata#9156)
`numpy` 2 compatibility in the `netcdf4` and `h5netcdf` backends (pydata#9136)
Fix time indexing regression in `convert_calendar` (pydata#9192)
Use duckarray assertions in test_coding_times (pydata#9226)
Use reshape and ravel from duck_array_ops in coding/times.py (pydata#9225)
Cleanup test_coding_times.py (pydata#9223)
Only use necessary dims when creating temporary dataarray (pydata#9206)
Fix two bugs in DataTree.update() (pydata#9214)
Use numpy 2.0-compat `np.complex64` dtype in test (pydata#9217)
Copy file name to clipboardExpand all lines: doc/getting-started-guide/faq.rst
+2-2
Original file line number
Diff line number
Diff line change
@@ -352,9 +352,9 @@ Some packages may have additional functionality beyond what is shown here. You c
352
352
How does xarray handle missing values?
353
353
--------------------------------------
354
354
355
-
**xarray can handle missing values using ``np.NaN``**
355
+
**xarray can handle missing values using ``np.nan``**
356
356
357
-
- ``np.NaN`` is used to represent missing values in labeled arrays and datasets. It is a commonly used standard for representing missing or undefined numerical data in scientific computing. ``np.NaN`` is a constant value in NumPy that represents "Not a Number" or missing values.
357
+
- ``np.nan`` is used to represent missing values in labeled arrays and datasets. It is a commonly used standard for representing missing or undefined numerical data in scientific computing. ``np.nan`` is a constant value in NumPy that represents "Not a Number" or missing values.
358
358
359
359
- Most of xarray's computation methods are designed to automatically handle missing values appropriately.
By `Jimmy Westling <https://github.com/illviljan>`_.
40
42
- Don't convert custom indexes to ``pandas`` indexes when computing a diff (:pull:`9157`)
41
43
By `Justus Magin <https://github.com/keewis>`_.
42
44
- Make :py:func:`testing.assert_allclose` work with numpy 2.0 (:issue:`9165`, :pull:`9166`).
43
45
By `Pontus Lurcock <https://github.com/pont-us>`_.
44
46
- Allow diffing objects with array attributes on variables (:issue:`9153`, :pull:`9169`).
45
47
By `Justus Magin <https://github.com/keewis>`_.
48
+
- ``numpy>=2`` compatibility in the ``netcdf4`` backend (:pull:`9136`).
49
+
By `Justus Magin <https://github.com/keewis>`_ and `Kai Mühlbauer <https://github.com/kmuehlbauer>`_.
46
50
- Promote floating-point numeric datetimes before decoding (:issue:`9179`, :pull:`9182`).
47
51
By `Justus Magin <https://github.com/keewis>`_.
52
+
- Address regression introduced in :pull:`9002` that prevented objects returned
53
+
by py:meth:`DataArray.convert_calendar` to be indexed by a time index in
54
+
certain circumstances (:issue:`9138`, :pull:`9192`). By `Mark Harfouche
55
+
<https://github.com/hmaarrfk>`_ and `Spencer Clark
56
+
<https://github.com/spencerkclark>`.
57
+
48
58
- Fiy static typing of tolerance arguments by allowing `str` type (:issue:`8892`, :pull:`9194`).
49
59
By `Michael Niklas <https://github.com/headtr1ck>`_.
50
60
- Dark themes are now properly detected for ``html[data-theme=dark]``-tags (:pull:`9200`).
@@ -59,7 +69,7 @@ Documentation
59
69
- Adds a flow-chart diagram to help users navigate help resources (`Discussion #8990 <https://github.com/pydata/xarray/discussions/8990>`_).
60
70
By `Jessica Scheick <https://github.com/jessicas11>`_.
61
71
- Improvements to Zarr & chunking docs (:pull:`9139`, :pull:`9140`, :pull:`9132`)
62
-
By `Maximilian Roos <https://github.com/max-sixty>`_
72
+
By `Maximilian Roos <https://github.com/max-sixty>`_.
0 commit comments