python-numba/skip-test_noinline_on_main_call.patch
Matej Cepl 48b2d573c1 - Update to 0.61.0:
Major Numba release adding Python 3.13 and NumPy 2.1 support.
  Detailed changelog at https://numba.readthedocs.io/en/stable/release/0.61.0-notes.html
  Highlights:
  - Add initial implementation for a new type system
  - Python 3.13 support
  - Dropped support for Python 3.9
  - Update the minimum supported NumPy version to 1.24
  - Added Support for NumPy 2.1
- Remove upstreamed patches:
  - numpy21.patch
  - py313.patch
- Add skip-failing-tests.patch to skip test_noinline_on_main_call
  (gh#numba/numba#9658).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numba?expand=0&rev=104
2025-02-06 17:17:42 +00:00

15 lines
487 B
Diff

---
numba/tests/test_codegen.py | 1 +
1 file changed, 1 insertion(+)
--- a/numba/tests/test_codegen.py
+++ b/numba/tests/test_codegen.py
@@ -209,6 +209,7 @@ class JITCPUCodegenTestCase(TestCase):
class TestWrappers(TestCase):
+ @unittest.skip("gh#numba/numba#9658 ... fails with LLVM 15")
def test_noinline_on_main_call(self):
# Checks that the cpython and cfunc wrapper produces a call with the
# "noinline" attr present for the decorated function.