Changes between Initial Version and Version 1 of Ticket #65187, comment 2


Ignore:
Timestamp:
May 19, 2022, 1:25:59 PM (2 years ago)
Author:
jsalort (Julien Salort)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #65187, comment 2

    initial v1  
    11I also need Numba, and version 0.55.1 is compatible with Python 3.10. However, it requires Numpy < 1.22. So Macports Numpy version is too recent (1.22.3). I don't know how to proceed. Would it be desirable to create a py310-numpy121 port ?
     2
     3That means that the py39-numba port is actually broken if MacPorts is up to date, i.e.
     4
     5
     6{{{
     7Python 3.9.12 (main, May 10 2022, 10:59:00)
     8[Clang 13.0.0 (clang-1300.0.29.30)] on darwin
     9Type "help", "copyright", "credits" or "license" for more information.
     10>>> import numba
     11Traceback (most recent call last):
     12  File "<stdin>", line 1, in <module>
     13  File "/opt/local/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/numba/__init__.py", line 200, in <module>
     14    _ensure_critical_deps()
     15  File "/opt/local/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/site-packages/numba/__init__.py", line 140, in _ensure_critical_deps
     16    raise ImportError("Numba needs NumPy 1.21 or less")
     17ImportError: Numba needs NumPy 1.21 or less
     18}}}