Skip to content

Commit a48c51f

Browse files
committed
build(deps): add scipy as a runtime dependency in pyproject.toml
Pip-only CI ("Unit Tests Python 3.10/3.11/3.12/3.13") was failing with ModuleNotFoundError: No module named 'scipy' because the surface-aware sampler now imports scipy.spatial.KDTree but scipy was only listed in environment.yml (conda), not in pyproject.toml. Adds scipy>=1.10 to the runtime dependencies so pip installs see it too. The conda env was already fine.
1 parent 4c5b780 commit a48c51f

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ requires-python = ">=3.10,<3.14"
1313
dependencies = [
1414
"numpy>=1.24",
1515
"pandas>=2.0",
16+
"scipy>=1.10",
1617
"openmm>=8.0",
1718
"mpmath>=1.2",
1819
]

0 commit comments

Comments
 (0)