-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from lcmd-epfl/new-metatensor
* New version of metatensor * Fix the discrepancies between pip's files, requirements.txt and environment.yml * Update the installation section of README * Use qstack_qml as qstack.qml
- Loading branch information
Showing
12 changed files
with
134 additions
and
65 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# qstack.qml is in a different python package | ||
# but prefer "the local version of it" if we are in a development environment, and both sources are there. | ||
import os | ||
_qstack_qml_path = os.path.join(os.path.dirname(__file__), 'qstack-qml') | ||
if os.path.isfile(os.path.join(_qstack_qml_path, 'qstack_qml', '__init__.py')): | ||
import sys | ||
sys.path.insert(0,_qstack_qml_path) | ||
from qstack_qml import * | ||
sys.path.pop(0) | ||
del sys | ||
else: | ||
try: | ||
from qstack_qml import * | ||
except ImportError: | ||
pass | ||
del os, _qstack_qml_path |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
attrs==21.4.0 | ||
certifi==2021.10.8 | ||
h5py==3.11.0 | ||
iniconfig==1.1.1 | ||
packaging==21.3 | ||
pluggy==1.0.0 | ||
py==1.11.0 | ||
pyparsing==3.0.6 | ||
pyscf==2.2.0 | ||
pytest==6.2.5 | ||
numpy===1.22.3 | ||
scipy==1.10 | ||
toml==0.10.2 | ||
scikit-learn==1.5.0 | ||
ase==3.22 | ||
tqdm==4.66 | ||
metatensor-core==0.1.8 | ||
cell2mol @ git+https://github.com/lcmd-epfl/cell2mol.git@22473bbf12a013467137a55a63c88fbbdc95baa2 | ||
qstack/qstack-qml |
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
Oops, something went wrong.