-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to remove NumPy installation in setup.py #466
Comments
Any updates on this error? |
1 similar comment
Any updates on this error? |
+1 |
1 similar comment
+1 |
Hi all, thanks for the report. This should be fixed with the v1.1.4 that I just released today. I'll close this issue but please open another one if you are still experiencing installation issues. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
When trying to build a wheel, an error occurred during the process of getting requirements. The error message indicates that the installation of NumPy is causing the problem, which is believed to be caused by the installation code in setup.py. It is suggested to remove related code in setup.py such as dist.Distribution().fetch_build_eggs(["numpy>=1.17.3"]) and install NumPy through requirements.txt instead. As the user is not sure how to solve this issue, they are seeking advice on whether it is possible to remove the code in setup.py and how to do so. The user has also checked issue #447 for similar issues but has not found a working solution.
Steps/Code to Reproduce
Start building a wheel
Observe the error message during the process of getting requirements
Expected Results
The requirements should be successfully obtained, and the wheel should be built without any issue.
Actual Results
An error occurred during the process of getting requirements. The error message suggests that the installation of NumPy is causing the problem, which is believed to be caused by the installation code in setup.py.
Versions
Python version: 3.9.6
Surprise version: 1.1.3
The text was updated successfully, but these errors were encountered: