Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
Dear release team, please unblock pydl in the current freeze. It solves #860679 "pydl: FTBFS on i386: Test failures", severity: serious. Changelog entry: pydl (0.5.3-3) unstable; urgency=medium * Fix failed test on 32 bits architectures (Closes: #860679) -- Vincent Prat <vincep...@free.fr> Sat, 22 Apr 2017 16:41:50 +0200 The debdiff is attached. Requested commands: unblock pydl/0.5.3-3
diff -Nru pydl-0.5.3/debian/changelog pydl-0.5.3/debian/changelog --- pydl-0.5.3/debian/changelog 2017-04-22 16:24:08.000000000 +0200 +++ pydl-0.5.3/debian/changelog 2017-04-22 17:05:30.000000000 +0200 @@ -1,3 +1,9 @@ +pydl (0.5.3-3) unstable; urgency=medium + + * Fix failed test on 32 bits architectures (Closes: #860679) + + -- Vincent Prat <vincep...@free.fr> Sat, 22 Apr 2017 16:41:50 +0200 + pydl (0.5.3-2) unstable; urgency=medium * Fix failed test due to incorrect Euclidean division in median diff -Nru pydl-0.5.3/debian/patches/fix_uniq_i386 pydl-0.5.3/debian/patches/fix_uniq_i386 --- pydl-0.5.3/debian/patches/fix_uniq_i386 1970-01-01 01:00:00.000000000 +0100 +++ pydl-0.5.3/debian/patches/fix_uniq_i386 2017-04-22 16:49:01.000000000 +0200 @@ -0,0 +1,15 @@ +Author: Vincent Prat <vincep...@free.fr> +Description: Fix uniq test for 32 bits architectures +--- a/pydl/uniq.py ++++ b/pydl/uniq.py +@@ -37,8 +37,8 @@ + -------- + >>> import numpy as np + >>> from pydl import uniq +- >>> uniq(np.sort(np.array([ 1, 2, 3, 1, 5, 6, 1, 7, 3, 2, 5, 9, 11, 1 ]))) +- array([ 3, 5, 7, 9, 10, 11, 12, 13]) ++ >>> print(uniq(np.sort(np.array([ 1, 2, 3, 1, 5, 6, 1, 7, 3, 2, 5, 9, 11, 1 ])))) ++ [ 3 5 7 9 10 11 12 13] + """ + from numpy import array, roll + if index is None: diff -Nru pydl-0.5.3/debian/patches/series pydl-0.5.3/debian/patches/series --- pydl-0.5.3/debian/patches/series 2017-04-22 16:24:08.000000000 +0200 +++ pydl-0.5.3/debian/patches/series 2017-04-22 16:39:19.000000000 +0200 @@ -1,3 +1,4 @@ ignore_entry_points use_system_astropy_helpers fix_median +fix_uniq_i386