Bug 2333031
Summary: | gr-air-modes needs to be rebuilt against NumPy 2.x | ||
---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Sandro <gui1ty> |
Component: | gr-air-modes | Assignee: | Jaroslav Škarvada <jskarvad> |
Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
Severity: | medium | Docs Contact: | |
Priority: | unspecified | ||
Version: | rawhide | CC: | jskarvad |
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | gr-air-modes-0-0.116.20200807git9e2515a5.fc42 | Doc Type: | If docs needed, set a value |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2024-12-21 05:43:50 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 2332159 |
FEDORA-2024-fbe36f88fe (gr-air-modes-0-0.116.20200807git9e2515a5.fc42) has been submitted as an update to Fedora 42. https://bodhi.fedoraproject.org/updates/FEDORA-2024-fbe36f88fe FEDORA-2024-fbe36f88fe (gr-air-modes-0-0.116.20200807git9e2515a5.fc42) has been pushed to the Fedora 42 stable repository. If problem still persists, please make note of it in this bug report. |
Currently, importing air_modes results in: >>> import air_modes A module that was compiled using NumPy 1.x cannot be run in NumPy 2.2.0 as it may crash. To support both 1.x and 2.x versions of NumPy, modules must be compiled with NumPy 2.0. Some module may need to rebuild instead e.g. with 'pybind11>=2.12'. If you are a user of the module, the easiest solution will be to downgrade to 'numpy<2' or try to upgrade the affected module. We expect that some modules will need time to support NumPy 2. Traceback (most recent call last): File "<frozen runpy>", line 198, in _run_module_as_main File "<frozen runpy>", line 88, in _run_code File "/usr/lib64/python3.13/_pyrepl/__main__.py", line 6, in <module> __pyrepl_interactive_console() File "/usr/lib64/python3.13/_pyrepl/main.py", line 59, in interactive_console run_multiline_interactive_console(console) File "/usr/lib64/python3.13/_pyrepl/simple_interact.py", line 160, in run_multiline_interactive_console more = console.push(_strip_final_indent(statement), filename=input_name, _symbol="single") # type: ignore[call-arg] File "/usr/lib64/python3.13/code.py", line 314, in push more = self.runsource(source, filename, symbol=_symbol) File "/usr/lib64/python3.13/_pyrepl/console.py", line 211, in runsource self.runcode(code) File "/usr/lib64/python3.13/code.py", line 92, in runcode exec(code, self.locals) File "<python-input-0>", line 1, in <module> import air_modes File "/usr/lib64/python3.13/site-packages/air_modes/__init__.py", line 31, in <module> from .air_modes_python import * Traceback (most recent call last): File "/usr/lib64/python3.13/site-packages/numpy/core/_multiarray_umath.py", line 44, in __getattr__ raise ImportError(msg) ImportError: A module that was compiled using NumPy 1.x cannot be run in NumPy 2.2.0 as it may crash. To support both 1.x and 2.x versions of NumPy, modules must be compiled with NumPy 2.0. Some module may need to rebuild instead e.g. with 'pybind11>=2.12'. If you are a user of the module, the easiest solution will be to downgrade to 'numpy<2' or try to upgrade the affected module. We expect that some modules will need time to support NumPy 2. ImportError: numpy.core.multiarray failed to import The above exception was the direct cause of the following exception: Traceback (most recent call last): File "<python-input-0>", line 1, in <module> import air_modes File "/usr/lib64/python3.13/site-packages/air_modes/__init__.py", line 31, in <module> from .air_modes_python import * ImportError: initialization failed A simple bump and rebuild should fix that. Reproducible: Always