Skip to content

Commit b9a0897

Browse files
authored
Merge pull request #16 from frthjf/fix/mpi-linking
Ensure correct MPI linking
2 parents 0567779 + 139a206 commit b9a0897

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

pyproject.toml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[build-system]
2-
requires = ["setuptools", "wheel", "numpy >= 1.21.6", "mpi4py >= 3.0.0",]
2+
requires = ["setuptools", "wheel", "numpy >= 1.21.6", "mpi4py >= 3.0.0"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "neuroh5"
77
dynamic = ["version", "description", "entry-points", "maintainers", "readme"]
8-
dependencies = [
9-
"click",
10-
"h5py >= 3.0",
11-
"numpy >= 1.21.6",
12-
"mpi4py >= 3.0.0",
13-
]
8+
dependencies = ["click", "h5py >= 3.0", "numpy >= 1.21.6", "mpi4py >= 3.0.0"]
9+
10+
[tool.uv]
11+
no-binary-package = ["mpi4py"]
12+
13+
[tool.uv.pip]
14+
no-binary = ["mpi4py"]

0 commit comments

Comments
 (0)