Skip to content

Commit

Permalink
work around pynanoflann
Browse files Browse the repository at this point in the history
  • Loading branch information
DeNeutoy committed Aug 30, 2024
1 parent a9ffa09 commit bd44276
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@

```bash
pip install orb-models
pip install "pynanoflann@git+https://github.com/dwastberg/pynanoflann#egg=af434039ae14bedcbb838a7808924d6689274168",
```
Pynanoflann is not available on PyPI, so you must install it from the git repository.

Orb models are expected to work on MacOS and Linux. Windows support is not guaranteed.

### Pretrained models
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ dependencies = [
"torch==2.2.0",
"ase==3.22.1",
"dm-tree>=0.1.8",
"pynanoflann@git+https://github.com/dwastberg/pynanoflann#egg=af434039ae14bedcbb838a7808924d6689274168",
]

[build-system]
Expand All @@ -40,4 +39,6 @@ Issues = "https://github.com/orbital-materials/orb-models/issues"
CI = "https://github.com/orbital-materials/orb-models/actions"

[project.optional-dependencies]
test = ["pytest"]
test = ["pytest",
"pynanoflann@git+https://github.com/dwastberg/pynanoflann#egg=af434039ae14bedcbb838a7808924d6689274168",
]

0 comments on commit bd44276

Please sign in to comment.