Version in base suite: 1.2.0-4 Base version: joblib_1.2.0-4 Target version: joblib_1.2.0-4+deb12u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/j/joblib/joblib_1.2.0-4.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/j/joblib/joblib_1.2.0-4+deb12u1.dsc changelog | 7 +++++++ rules | 6 ++++++ 2 files changed, 13 insertions(+) gpgv: Signature made Sat Oct 22 05:25:08 2022 UTC gpgv: using RSA key 3E99A526F5DCC0CBBF1CEEA600BAE74B343369F1 gpgv: issuer "nilesh@debian.org" gpgv: Can't check signature: No public key dpkg-source: warning: failed to verify signature on /srv/release.debian.org/tmp/tmp8_le6h87/joblib_1.2.0-4.dsc diff -Nru joblib-1.2.0/debian/changelog joblib-1.2.0/debian/changelog --- joblib-1.2.0/debian/changelog 2022-10-22 05:19:54.000000000 +0000 +++ joblib-1.2.0/debian/changelog 2024-12-30 18:32:00.000000000 +0000 @@ -1,3 +1,10 @@ +joblib (1.2.0-4+deb12u1) bookworm; urgency=medium + + * Team upload. + * Fix FTBFS on single-CPU systems. Closes: #1085692. + + -- Santiago Vila Mon, 30 Dec 2024 19:32:00 +0100 + joblib (1.2.0-4) unstable; urgency=medium * Team upload. diff -Nru joblib-1.2.0/debian/rules joblib-1.2.0/debian/rules --- joblib-1.2.0/debian/rules 2022-10-22 05:19:45.000000000 +0000 +++ joblib-1.2.0/debian/rules 2024-12-30 18:30:12.000000000 +0000 @@ -9,6 +9,12 @@ # Until https://github.com/joblib/joblib/issues/1329 is open EXCLUDE_TESTS += and not test_parallel_with_interactively_defined_functions_default_backend +# https://github.com/joblib/joblib/issues/1618 +ifeq ($(shell nproc), 1) + EXCLUDE_TESTS += and not test_nested_parallelism_limit + EXCLUDE_TESTS += and not test_threadpool_limitation_in_child_override +endif + export PYBUILD_TEST_ARGS_python3 := -k "$(EXCLUDE_TESTS)" %: