-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove pymatgen down pin in pyproject.toml to fix spurious atomate2 dep resolution error ERROR: Cannot install atomate2 and atomate2[strict,tests]==0.0.1 because these package versions have conflicting dependencies. The conflict is caused by: atomate2[strict,tests] 0.0.1 depends on pymatgen>=2023.10.4 atomate2[strict,tests] 0.0.1 depends on pymatgen==2023.10.4; extra == "strict" ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts chgnet 0.2.1 depends on pymatgen>=2023.5.31 emmet-core 0.70.0 depends on pymatgen>=2023.10.11 To fix this you could try to: 1. loosen the range of package versions you've specified 2. remove package versions to allow pip attempt to solve the dependency conflict
- Loading branch information
Showing
3 changed files
with
5 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "chgnet" | ||
version = "0.2.1" | ||
version = "0.2.2" | ||
description = "Pretrained Universal Neural Network Potential for Charge-informed Atomistic Modeling" | ||
authors = [{ name = "Bowen Deng", email = "[email protected]" }] | ||
requires-python = ">=3.9" | ||
|
@@ -15,7 +15,7 @@ dependencies = [ | |
"cython>=0.29.26", | ||
"numpy>=1.21.6", | ||
"nvidia-ml-py3>=7.352.0", | ||
"pymatgen>=2023.5.31", | ||
"pymatgen", | ||
"torch>=1.11.0", | ||
] | ||
classifiers = [ | ||
|
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