-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Major dependency updates after numpy 2.0.0. pymatgen, monty, h5py, sc…
…ikit-learn, scipy versions updated accordingly. Pyscipopt now contains bundled solver library, no longer needs stand-alone binary installation.
- Loading branch information
1 parent
8cdedb4
commit 7be178a
Showing
5 changed files
with
22 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
nbgitpuller | ||
numpy>=1.20.1 | ||
monty==2023.9.25 | ||
pymatgen==2023.8.10 | ||
scikit-learn==1.3.2 | ||
h5py==3.11.0 | ||
numpy==2.2.1 | ||
monty==2024.12.10 | ||
pymatgen==2024.11.13 | ||
scikit-learn==1.6.0 | ||
h5py==3.12.1 | ||
crystal_toolkit |
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 |
---|---|---|
|
@@ -19,17 +19,19 @@ classifiers = [ | |
"Topic :: Software Development :: Libraries :: Python Modules" | ||
] | ||
dependencies = [ | ||
"numpy >=1.24,<2.0", | ||
"pymatgen >=2023.08.10", | ||
"monty >=v2022.9.8", | ||
"h5py >=3.10.0" | ||
"numpy >=2.0.0,<3.0", | ||
"pymatgen >=2024.11.13", | ||
"monty >=2024.12.10", | ||
"h5py >=3.12.0" | ||
] | ||
authors = [ | ||
{name = "Luis Barroso-Luque", email = "[email protected]"}, | ||
{name = "Fengyu Xie", email = "lbluque@berkeley.edu"} | ||
{name = "Fengyu Xie", email = "fengyu_xie@berkeley.edu"} | ||
] | ||
maintainers = [ | ||
{name = "Luis Barroso-Luque", email = "[email protected]"} | ||
{name = "Luis Barroso-Luque", email = "[email protected]"}, | ||
{name = "Fengyu Xie", email = "[email protected]"}, | ||
{name = "Ronald Kam", email = "[email protected]"} | ||
] | ||
|
||
[project.optional-dependencies] | ||
|
@@ -55,7 +57,7 @@ test = [ | |
"pytest-cov >=4.0.0", | ||
"pytest-split>=0.9.0", | ||
"scikit-learn >=1.1.2", | ||
"h5py >=3.10.0", | ||
"h5py >=3.12.0", | ||
"coverage", | ||
"polytope", | ||
"cvxpy", | ||
|
@@ -79,7 +81,7 @@ changelog = "https://cedergrouphub.github.io/smol/CHANGES.md" | |
tracker = "https://github.com/CederGroupHub/smol/issues" | ||
|
||
[build-system] | ||
requires = ["setuptools", "setuptools-scm[toml]>=6.2", "cython>= 0.29.34", "numpy>=1.24"] | ||
requires = ["setuptools", "setuptools-scm[toml]>=6.2", "cython>= 0.29.34", "numpy>=2.0.0"] | ||
# Use legacy backend to import local packages in setup.py | ||
build-backend = "setuptools.build_meta:__legacy__" | ||
|
||
|
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,4 +1,4 @@ | ||
numpy==1.25.2 | ||
monty==2023.9.25 | ||
pymatgen==2023.9.10 | ||
h5py==3.11.0 | ||
numpy==2.2.1 | ||
monty==2024.12.10 | ||
pymatgen==2024.11.13 | ||
h5py==3.12.1 |