Dear maintainer, I've just uploaded 3.10.12.0-5.1 with the proposed patch.
debdiff attached Stuart -- Stuart Prescott http://www.nanonanonano.net/ [email protected] Debian Developer http://www.debian.org/ [email protected] GPG fingerprint 90E2 D2C1 AD14 6A1B 7EBB 891D BBC1 7EBB 1396 F2F7
diff -Nru gnuradio-3.10.12.0/debian/changelog gnuradio-3.10.12.0/debian/changelog --- gnuradio-3.10.12.0/debian/changelog 2025-10-18 05:33:39.000000000 +1100 +++ gnuradio-3.10.12.0/debian/changelog 2026-01-21 13:05:36.000000000 +1100 @@ -1,3 +1,11 @@ +gnuradio (3.10.12.0-5.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix autopkgtest failure with non-default Python interpreters by only + testing with the default Python interpreter (Closes: #1125021). + + -- Stuart Prescott <[email protected]> Wed, 21 Jan 2026 13:05:36 +1100 + gnuradio (3.10.12.0-5) unstable; urgency=medium * Simplify autopkgtest diff -Nru gnuradio-3.10.12.0/debian/tests/control gnuradio-3.10.12.0/debian/tests/control --- gnuradio-3.10.12.0/debian/tests/control 2025-10-18 05:33:39.000000000 +1100 +++ gnuradio-3.10.12.0/debian/tests/control 2026-01-21 13:05:36.000000000 +1100 @@ -1,3 +1,3 @@ Tests: python -Depends: gnuradio, python3-all, python3-numpy +Depends: gnuradio, python3, python3-numpy Restrictions: superficial diff -Nru gnuradio-3.10.12.0/debian/tests/python gnuradio-3.10.12.0/debian/tests/python --- gnuradio-3.10.12.0/debian/tests/python 2025-10-18 05:33:39.000000000 +1100 +++ gnuradio-3.10.12.0/debian/tests/python 2026-01-21 13:05:36.000000000 +1100 @@ -2,7 +2,7 @@ set -eu -for python in $(py3versions -s); do +for python in $(py3versions -d); do echo "Testing some $python numpy using modules..." $python -c 'import gnuradio.digital; print(gnuradio.digital.numpy)' done

