Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions backend/find_pytorch.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,11 @@ def get_pt_requirement(pt_version: str = "") -> dict:
# https://github.com/pytorch/pytorch/commit/7e0c26d4d80d6602aed95cb680dfc09c9ce533bc
else "torch>=2.1.0",
"e3nn>=0.5.9",
# O(N) cell-list neighbor list for fast Python/ASE inference; the
# torch bindings (vesin-torch) ship only as a PyPI extra, so keep it
# under the torch extra rather than the core deps (conda-forge has
# vesin but not vesin-torch).
"vesin[torch]",
*mpi_requirement,
*cibw_requirement,
],
Expand Down
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ dependencies = [
'array-api-compat',
'lmdb',
'msgpack',
# O(N) cell-list neighbor list (vesin.torch) for fast Python/ASE inference
'vesin[torch]',
]
requires-python = ">=3.10"
keywords = ["deepmd"]
Expand Down
Loading