Skip to content

Commit

Permalink
added optional dependency: pymatgen (fixed version for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolearyc committed Sep 30, 2024
1 parent e7edaed commit 082c251
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
pip install uv
uv pip install ${{ matrix.uv-arg }} --system -r deps/dev_requirements.txt
uv pip install ${{ matrix.uv-arg }} --system -r deps/requirements.txt
uv pip install ${{ matrix.uv-arg }} --system -r deps/pymatgen_requirements.txt
uv pip install ${{ matrix.uv-arg }} --system -r deps/torch_geometric_requirements.txt
uv pip install ${{ matrix.uv-arg }} --system -r deps/torch_requirements.txt
uv pip install ${{ matrix.uv-arg }} --system --no-index -r deps/torch_extra_requirements.txt
Expand Down
1 change: 1 addition & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ python:
install:
- requirements: docs/requirements.txt
- requirements: deps/requirements.txt
- requirements: deps/pymatgen_requirements.txt
- requirements: deps/torch_requirements.txt
- requirements: deps/torch_geometric_requirements.txt
- requirements: deps/torch_extra_requirements.txt
Expand Down
1 change: 1 addition & 0 deletions deps/pymatgen_requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pymatgen == 2024.9.17.1 # temporarily fixed for development
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ torch = [
"scikit-learn >= 1.4.0;python_version=='3.12' and sys_platform=='win32'", # min working
"torch_geometric >= 2.3.0", # min working
]
pymatgen = [
"pymatgen == 2024.9.17.1",
]

[project.urls]
Documentation = "https://ramannoodle.readthedocs.io/en/latest/"
Expand Down

0 comments on commit 082c251

Please sign in to comment.