Closed manzt closed 1 year ago
What was changed in this pull request?
Removes numpy from setup.py setup_requires.
numpy
setup_requires
Why is it necessary?
Setup doesn't actually require numpy, and pip install -e . fails with numpy v1.24.2. We can avoid this all together by removing it. If we need a build dependency, it should be specified with build-system in a pyproject.toml.
pip install -e .
v1.24.2
build-system
Fixes #___
black .
Yeah, this must have been leftover from some earlier cython modules.
Description
What was changed in this pull request?
Removes
numpy
from setup.pysetup_requires
.Why is it necessary?
Setup doesn't actually require numpy, and
pip install -e .
fails with numpyv1.24.2
. We can avoid this all together by removing it. If we need a build dependency, it should be specified withbuild-system
in a pyproject.toml.Fixes #___
Checklist
black .