Skip to content

Commit

Permalink
Workaround the installation issue #27
Browse files Browse the repository at this point in the history
Not sure about the exact root cause, but the error messages suggested
that there's issues with setuptools/pip. I can confirm we can fix the
issue by changing the build-time setuptools requirement to <v60.0.

At least v59.8.0 should work.
https://github.com/pypa/setuptools/releases/tag/v59.8.0
  • Loading branch information
r9y9 committed Jan 28, 2022
1 parent 7ad3adc commit 03aa3a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
requires = [
"wheel",
"setuptools",
"setuptools<v60.0",
"cython>=0.21.0",
"numpy<v1.20.0",
]
Expand Down

0 comments on commit 03aa3a1

Please sign in to comment.