forked from MITgcm/MITgcm
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update MITgcmutils for numpy 2.0.0 and bug fix (MITgcm#897)
* Update MITgcmutils for numpy 2.0.0 * Fix two bugs * MITgcmutils now always requires matplotlib * adjust warning statement * Bump MITgcmutils version number * MITgcmutils: fix bug in negative salinity check * document fix in utils/python --------- Co-authored-by: Martin Losch <[email protected]> Co-authored-by: Jean-Michel Campin <[email protected]>
- Loading branch information
1 parent
c908a60
commit 83a5371
Showing
4 changed files
with
31 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setuptools.setup( | ||
name="MITgcmutils", | ||
version="0.2", | ||
version="0.2.1", | ||
author="MITgcm Developers and Contributors", | ||
author_email="[email protected]", | ||
description="Python utilities for MITgcm", | ||
|
@@ -19,8 +19,5 @@ | |
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
install_requires=["numpy"], | ||
extras_require={ | ||
"plot": ["matplotlib"], | ||
} | ||
install_requires=["numpy","matplotlib"], | ||
) |