Skip to content

Commit

Permalink
Merge pull request #185 from allenai/epwalsh/install-patch
Browse files Browse the repository at this point in the history
Fix local installation on MacOS
  • Loading branch information
epwalsh authored Aug 16, 2024
2 parents c4fa395 + fae2e2e commit 4cf2d17
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,12 @@ all = [
]

[build-system]
requires = ["maturin[patchelf]>=1.1,<2.0", "setuptools >= 61.0.0", "wheel"]
requires = [
"setuptools >= 61.0.0",
"wheel",
"maturin[patchelf]>=1.1,<2.0 ; platform_system=='Linux'",
"maturin>=1.1,<2.0 ; platform_system!='Linux'",
]
build-backend = "maturin"


Expand Down

0 comments on commit 4cf2d17

Please sign in to comment.