summaryrefslogtreecommitdiff
path: root/doc/release/upcoming_changes/14841.compatibility.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/release/upcoming_changes/14841.compatibility.rst')
-rw-r--r--doc/release/upcoming_changes/14841.compatibility.rst11
1 files changed, 0 insertions, 11 deletions
diff --git a/doc/release/upcoming_changes/14841.compatibility.rst b/doc/release/upcoming_changes/14841.compatibility.rst
deleted file mode 100644
index 51c32114a..000000000
--- a/doc/release/upcoming_changes/14841.compatibility.rst
+++ /dev/null
@@ -1,11 +0,0 @@
-Add more ufunc loops for ``datetime64``, ``timedelta64``
---------------------------------------------------------
-``np.datetime('NaT')`` should behave more like ``float('Nan')``. Add needed
-infrastructure so ``np.isinf(a)`` and ``np.isnan(a)`` will run on
-``datetime64`` and ``timedelta64`` dtypes. Also added specific loops for
-`numpy.fmin` and `numpy.fmax` that mask ``NaT``. This may require adjustment to user-
-facing code. Specifically, code that either disallowed the calls to
-`numpy.isinf` or `numpy.isnan` or checked that they raised an exception will
-require adaptation, and code that mistakenly called `numpy.fmax` and
-`numpy.fmin` instead of `numpy.maximum` or `numpy.minimum` respectively will
-requre adjustment. This also affects `numpy.nanmax` and `numpy.nanmin`.