Sorry for the inconvenience. Here is the updated debdiff, but I will wait for the current package to be rejected (if possible) before reuploading again (otherwise I would have to make a +deb13u2 release, which I would prefer to avoid).
Thanks.
diff -Nru numba-0.61.2+dfsg/debian/changelog numba-0.61.2+dfsg/debian/changelog --- numba-0.61.2+dfsg/debian/changelog 2025-04-13 20:54:29.000000000 +0200 +++ numba-0.61.2+dfsg/debian/changelog 2026-04-30 12:35:00.000000000 +0200 @@ -1,3 +1,11 @@ +numba (0.61.2+dfsg-1+deb13u1) trixie; urgency=medium + + * Team upload. + * Conditionally skip tests requiring more CPUs than available. + Closes: #1108051. + + -- Santiago Vila <[email protected]> Thu, 30 Apr 2026 12:35:00 +0200 + numba (0.61.2+dfsg-1) unstable; urgency=medium * New upstream release diff -Nru numba-0.61.2+dfsg/debian/patches/series numba-0.61.2+dfsg/debian/patches/series --- numba-0.61.2+dfsg/debian/patches/series 2025-04-13 20:44:11.000000000 +0200 +++ numba-0.61.2+dfsg/debian/patches/series 2026-04-30 12:35:00.000000000 +0200 @@ -10,3 +10,4 @@ add-gdb-test-check.patch #armel-libatomic.patch llvm-19-pr10011.patch +single-cpu.patch diff -Nru numba-0.61.2+dfsg/debian/patches/single-cpu.patch numba-0.61.2+dfsg/debian/patches/single-cpu.patch --- numba-0.61.2+dfsg/debian/patches/single-cpu.patch 1970-01-01 01:00:00.000000000 +0100 +++ numba-0.61.2+dfsg/debian/patches/single-cpu.patch 2026-04-30 12:35:00.000000000 +0200 @@ -0,0 +1,19 @@ +From: Santiago Vila <[email protected]> +Subject: Conditionally skip tests requiring more CPUs than available +Bug-Debian: https://bugs.debian.org/1108051 +Forwarded: https://github.com/numba/numba/issues/10580 + +--- a/numba/tests/test_parallel_backend.py ++++ b/numba/tests/test_parallel_backend.py +@@ -433,6 +433,11 @@ + + TestSpecificBackend.generate() + ++_skip = unittest.skipIf(config.NUMBA_NUM_THREADS < 2, "Not enough CPU cores") ++for _name in ( ++ 'test_random_concurrent_vectorize_tbb', ++): ++ setattr(TestSpecificBackend, _name, _skip(getattr(TestSpecificBackend, _name))) + + class ThreadLayerTestHelper(TestCase): + """

