Skip to content

Commit

Permalink
Fixes for NumPy 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adtzlr committed Jun 18, 2024
1 parent 04ba9ca commit 16dd6b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/matadi/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.1"
__version__ = "0.2.2"
2 changes: 1 addition & 1 deletion src/matadi/_apply.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def rshape(z):
parallel = ()

# map function `N` times on reshaped input
N = np.product(ax)
N = np.prod(ax)
out = fun.map(N, *parallel)(*y)

if not isinstance(out, tuple):
Expand Down

0 comments on commit 16dd6b4

Please sign in to comment.