summaryrefslogtreecommitdiff
path: root/pint/facets
diff options
context:
space:
mode:
authorDennis Göries <43136580+dgoeries@users.noreply.github.com>2023-03-23 18:51:28 +0100
committerGitHub <noreply@github.com>2023-03-23 18:51:28 +0100
commit238fdc151ed5fe7cdf3ac2933b90d3d7bdf2e4c5 (patch)
treeed92f1cf9421199c5f99439cc87d0cf416f00036 /pint/facets
parent3c6f5ffcb9304089caf4be07ded2c3644c2c0e13 (diff)
downloadpint-238fdc151ed5fe7cdf3ac2933b90d3d7bdf2e4c5.tar.gz
Support numpy delete (#1699)
* Support numpy delete --------- Co-authored-by: Jules Chéron <43635101+jules-ch@users.noreply.github.com>
Diffstat (limited to 'pint/facets')
-rw-r--r--pint/facets/numpy/numpy_func.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pint/facets/numpy/numpy_func.py b/pint/facets/numpy/numpy_func.py
index aa5886c..ee6ef31 100644
--- a/pint/facets/numpy/numpy_func.py
+++ b/pint/facets/numpy/numpy_func.py
@@ -830,6 +830,7 @@ for func_str, unit_arguments, wrap_output in [
("lib.stride_tricks.sliding_window_view", "x", True),
("rot90", "m", True),
("insert", ["arr", "values"], True),
+ ("delete", ["arr"], True),
("resize", "a", True),
("reshape", "a", True),
("allclose", ["a", "b"], False),