-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #4098: upgrade to numpy 2.0.0
- Loading branch information
Showing
23 changed files
with
3,440 additions
and
347 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from numpy import RankWarning, TooHardError | ||
from numpy.exceptions import RankWarning, TooHardError | ||
|
||
__all__ = ["RankWarning", "TooHardError"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,14 @@ | ||
# flake8: noqa | ||
from numpy import ( | ||
RankWarning, | ||
from numpy.lib import ( | ||
add_docstring, | ||
add_newdoc, | ||
deprecate, | ||
deprecate_with_doc, | ||
disp, | ||
issubclass_, | ||
issubdtype, | ||
polynomial, | ||
typename, | ||
) | ||
|
||
from arkouda.numpy.lib import emath | ||
from arkouda.numpy.lib.emath import * | ||
|
||
|
||
__all__ = [ | ||
"RankWarning", | ||
"add_docstring", | ||
"add_newdoc", | ||
"deprecate", | ||
"deprecate_with_doc", | ||
"disp", | ||
"emath", | ||
"issubclass_", | ||
"issubdtype", | ||
"polynomial", | ||
"typename", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from numpy.lib.npyio import DataSource | ||
|
||
__all__ = ["DataSource"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from numpy import format_parser | ||
from numpy.rec import format_parser | ||
|
||
__all__ = ["format_parser"] |
Oops, something went wrong.