You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now if you do pip-3.9 install numpy, it will try to build NumPy for a version that does not support Python 3.9 yet (as stated in the release notes, and in numpy/__init__.py). We should see if we can fix the PyPI classifiers for this.
EDIT: or it's python_requires='>=3.6' in setup.py.
The text was updated successfully, but these errors were encountered:
Do you mean by setting an upper bound, like python_requires='>=3.6,<3.9'?
I think the new problem would be that pip will just loop through releases and reject any with that, but find an older version with python_requires='>=3.6' and fail on that instead.
Uh oh!
There was an error while loading. Please reload this page.
Right now if you do
pip-3.9 install numpy
, it will try to build NumPy for a version that does not support Python 3.9 yet (as stated in the release notes, and innumpy/__init__.py
). We should see if we can fix the PyPI classifiers for this.EDIT: or it's
python_requires='>=3.6'
insetup.py
.The text was updated successfully, but these errors were encountered: