-
Notifications
You must be signed in to change notification settings - Fork 29
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
Installation fail -- requirements are invalid #23
Comments
This is the problem that I caught in my own production today, let's fix this. |
NP with yanking 1.3.13, but won't the story repeat with 1.3.12, 1.3.11, etc.? |
I don't think so, the problem was introduce by #21 right before 1.3.13. Previous versions used build requirement numpy>=1.0.0 and install requirement numpy>=1.0.0, so they matched. |
The metadata is out of sync again, setup.py says |
The current
setup.py
lists:This means
pip
will try to install the current version onlapjv
even ifnumpy
is older than 1.20. It will build against numpy 1.20, install it in your environment with older numpy, andimport lapjv
will fail with:Please sync
install_requires
withsetup_requires
as building with one version and running with another does NOT work.The text was updated successfully, but these errors were encountered: