0.21.0 wheels broken for older (<1.13) numpy version
See original GitHub issuexref https://github.com/pandas-dev/pandas/issues/16715#issuecomment-347326042
I can reproduce what was reported in the other issue: in a clean env, first installing python -m pip install numpy==1.11.2
and then python -m pip install pandas
(0.21.0) results in a broken install, while in principle our wheels should be build against the oldest supported numpy version and this should thus work.
From a quick glance it however seems that the python 2.7 wheels are still build with numpy 1.7: https://github.com/MacPython/pandas-wheels/blob/master/.travis.yml
Issue Analytics
- State:
- Created 6 years ago
- Comments:18 (16 by maintainers)
Top Results From Across the Web
NumPy 1.21.0 Release Notes
The Python versions supported for this release are 3.7-3.9. Official support for Python 3.10 will be added when it is released. Warning. There...
Read more >failed to initialize numpy: module compiled against api version ...
Seems like this is due to pandas version higher than 0.21.0 and numpy version 1.13.3 that is pulled by TensorFlow not playing well...
Read more >How can I upgrade NumPy? - Stack Overflow
When you already have an older version of NumPy, use this: pip install numpy --upgrade. If it still doesn't work, try: pip install...
Read more >Release Notes — Numba 0.56.4+0.g288a38bbd.dirty-py3.7 ...
Version 0.56.2 (1 September, 2022) . This is a bugfix release that supports NumPy 1.23 and fixes CUDA function caching. Pull-Requests:.
Read more >scikit-learn user guide
ensure that binary wheels are used, and NumPy and SciPy are not ... Printable pdf documentation for old versions can be found here....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
OK, so the full pip install command needed to install this version is:
(note the --no-index in the end, as otherwise it will still download the pypi one)
0.21.1 wheels are up, and should now be working.