diff -Nru libinline-python-perl-0.55/Changes libinline-python-perl-0.56/Changes --- libinline-python-perl-0.55/Changes 2017-07-04 07:27:03.935254455 +0000 +++ libinline-python-perl-0.56/Changes 2017-08-04 13:29:38.995002150 +0000 @@ -1,5 +1,8 @@ Revision history for Perl extension Inline::Python. +0.56 Fri Aug 04 15:30:00 CEST 2017 (Stefan Seifert) + - Fix floating point related test failures on some machines. + 0.55 Tue Jul 03 09:30:00 CEST 2017 (Stefan Seifert) - Pass Python floats as floats to Perl, not as string. diff -Nru libinline-python-perl-0.55/debian/changelog libinline-python-perl-0.56/debian/changelog --- libinline-python-perl-0.55/debian/changelog 2017-07-26 20:27:58.000000000 +0000 +++ libinline-python-perl-0.56/debian/changelog 2017-11-12 19:24:29.000000000 +0000 @@ -1,8 +1,12 @@ -libinline-python-perl (0.55-1build1) artful; urgency=medium +libinline-python-perl (0.56-1) unstable; urgency=medium - * No-change rebuild for perl 5.26.0. + * Team upload - -- Matthias Klose Wed, 26 Jul 2017 20:27:58 +0000 + * New upstream version 0.56 + * add build dependency on libtest-number-delta-perl + * declare conformance with Policy 4.1.1 (no changes needed) + + -- Damyan Ivanov Sun, 12 Nov 2017 19:24:29 +0000 libinline-python-perl (0.55-1) unstable; urgency=medium diff -Nru libinline-python-perl-0.55/debian/control libinline-python-perl-0.56/debian/control --- libinline-python-perl-0.55/debian/control 2017-07-10 00:49:26.000000000 +0000 +++ libinline-python-perl-0.56/debian/control 2017-11-12 19:24:16.000000000 +0000 @@ -10,9 +10,10 @@ libinline-perl, libproc-processtable-perl, libtest-deep-perl, + libtest-number-delta-perl, perl, python-dev -Standards-Version: 4.0.0 +Standards-Version: 4.1.1 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libinline-python-perl.git Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libinline-python-perl.git Homepage: https://metacpan.org/release/Inline-Python diff -Nru libinline-python-perl-0.55/Makefile.PL libinline-python-perl-0.56/Makefile.PL --- libinline-python-perl-0.55/Makefile.PL 2016-11-08 07:26:15.478110011 +0000 +++ libinline-python-perl-0.56/Makefile.PL 2017-08-04 13:14:38.533582109 +0000 @@ -105,6 +105,7 @@ 'Test' => 0, 'Test::More' => 0, 'Test::Deep' => 0, + 'Test::Number::Delta' => 0, 'Proc::ProcessTable' => '0.53', }, OBJECT => 'Python.o py2pl.o perlmodule.o util.o', diff -Nru libinline-python-perl-0.55/META.json libinline-python-perl-0.56/META.json --- libinline-python-perl-0.55/META.json 2017-07-04 07:27:35.343997829 +0000 +++ libinline-python-perl-0.56/META.json 2017-08-04 13:31:01.613851263 +0000 @@ -42,7 +42,8 @@ "Proc::ProcessTable" : "0.53", "Test" : "0", "Test::Deep" : "0", - "Test::More" : "0" + "Test::More" : "0", + "Test::Number::Delta" : "0" } } }, @@ -54,6 +55,6 @@ "web" : "http://github.com/niner/inline-python-pm" } }, - "version" : "0.55", + "version" : "0.56", "x_serialization_backend" : "JSON::PP version 2.27300_01" } diff -Nru libinline-python-perl-0.55/META.yml libinline-python-perl-0.56/META.yml --- libinline-python-perl-0.55/META.yml 2017-07-04 07:27:35.259995843 +0000 +++ libinline-python-perl-0.56/META.yml 2017-08-04 13:31:01.485846857 +0000 @@ -8,6 +8,7 @@ Test: '0' Test::Deep: '0' Test::More: '0' + Test::Number::Delta: '0' configure_requires: ExtUtils::MakeMaker: '0' dynamic_config: 1 @@ -27,5 +28,5 @@ Inline: '0.46' resources: repository: http://github.com/niner/inline-python-pm.git -version: '0.55' +version: '0.56' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff -Nru libinline-python-perl-0.55/Python.pm libinline-python-perl-0.56/Python.pm --- libinline-python-perl-0.55/Python.pm 2017-07-04 07:27:16.783558652 +0000 +++ libinline-python-perl-0.56/Python.pm 2017-08-04 13:29:54.755546459 +0000 @@ -6,7 +6,7 @@ require Exporter; our ($VERSION, @ISA, @EXPORT_OK); @ISA = qw(Inline DynaLoader Exporter); -$VERSION = '0.55'; +$VERSION = '0.56'; @EXPORT_OK = qw(py_eval py_new_object py_call_method diff -Nru libinline-python-perl-0.55/t/21arrayref.t libinline-python-perl-0.56/t/21arrayref.t --- libinline-python-perl-0.55/t/21arrayref.t 2011-03-09 10:32:37.024820981 +0000 +++ libinline-python-perl-0.56/t/21arrayref.t 2017-08-04 13:23:33.758278085 +0000 @@ -1,4 +1,5 @@ use Test::More tests => 19; +use Test::Number::Delta; use Inline Config => DIRECTORY => './blib_test'; use Inline::Python qw(py_call_function py_is_tuple); @@ -52,10 +53,10 @@ is(len_empty_perl_array(Foo->new), 0); my @b = (0.1,0.2,0.3,0.4); -is((bounce_array(\@b))[0], 0.1); +delta_ok((bounce_array(\@b))[0], 0.1); map($b[$_]+$b[$_], 0..$#b); -is((bounce_array(\@b))[1], 0.2); +delta_ok((bounce_array(\@b))[1], 0.2); is(ref return_tuple(), 'ARRAY'); is(scalar @{ return_tuple() }, 3); diff -Nru libinline-python-perl-0.55/t/30floats.t libinline-python-perl-0.56/t/30floats.t --- libinline-python-perl-0.55/t/30floats.t 2017-07-04 07:25:37.021192568 +0000 +++ libinline-python-perl-0.56/t/30floats.t 2017-08-04 13:27:29.566517598 +0000 @@ -3,6 +3,7 @@ use Inline Config => DIRECTORY => './blib_test'; use Test::More tests => 7; +use Test::Number::Delta; use POSIX qw(setlocale LC_NUMERIC); use Inline Python => <