From: Raspbian automatic forward porter Date: Mon, 29 Jul 2024 06:13:48 +0000 (+0100) Subject: Merge version 0.14.0+dfsg-5+rpi1 and 0.14.2+dfsg-1 to produce 0.14.2+dfsg-1+rpi1 X-Git-Tag: archive/raspbian/0.14.2+dfsg-1+rpi1^0 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b5a63b70aef0c8015bc55a875399a052a35c9bda;p=statsmodels.git Merge version 0.14.0+dfsg-5+rpi1 and 0.14.2+dfsg-1 to produce 0.14.2+dfsg-1+rpi1 --- b5a63b70aef0c8015bc55a875399a052a35c9bda diff --cc debian/changelog index 49965a7,a199923..87f678c --- a/debian/changelog +++ b/debian/changelog @@@ -1,12 -1,33 +1,43 @@@ - statsmodels (0.14.0+dfsg-5+rpi1) trixie-staging; urgency=medium ++statsmodels (0.14.2+dfsg-1+rpi1) trixie-staging; urgency=medium + + [changes brought forward from 0.10.2-2+rpi1 by Peter Michael Green at Tue, 04 Feb 2020 00:34:03 +0000] + * Disable testsuite. + + [changes introduced in 0.11.1-2+rpi1 by Peter Michael Green] + * Disable documentation build due to timeouts. + - -- Raspbian forward porter Fri, 17 Nov 2023 01:28:42 +0000 ++ -- Raspbian forward porter Mon, 29 Jul 2024 06:13:47 +0000 ++ + statsmodels (0.14.2+dfsg-1) unstable; urgency=medium + + * New upstream release. (Closes: #1056891) + * Refresh patches, d/copyright, dependencies. + * Bump Standards-Version to 4.7.0 (no changes needed). + * Tests: increase i386 TestMixedLM.test_compare_numdiff tolerance, + remove no longer needed check script. + + -- Rebecca N. Palmer Sun, 21 Apr 2024 20:55:32 +0100 + + statsmodels (0.14.1+dfsg-2) unstable; urgency=medium + + * Tests: ignore DynamicFactorMQ exception on big-endian systems. + + -- Rebecca N. Palmer Sun, 21 Jan 2024 09:38:29 +0000 + + statsmodels (0.14.1+dfsg-1) unstable; urgency=medium + + * Upstream bugfix release. Drop patch no longer needed. + + -- Rebecca N. Palmer Sat, 20 Jan 2024 13:41:10 +0000 + + statsmodels (0.14.0+dfsg-6) unstable; urgency=medium + + * Fix another issue with Cython 3.0. As one still remains, + use cython3-legacy (workaround for #1056891). + * Tests: properly ignore i386 nonconvergence. + * Docs reproducibility: fix another random seed. + + -- Rebecca N. Palmer Tue, 12 Dec 2023 20:07:17 +0000 statsmodels (0.14.0+dfsg-5) unstable; urgency=medium diff --cc debian/rules index 83920d5,a677edc..334e1c8 --- a/debian/rules +++ b/debian/rules @@@ -101,9 -101,9 +101,9 @@@ override_dh_install # the inner 'for' (expected to be a single item, cpython3_${testpy3ver}_statsmodels/build) is because globs aren't expanded when setting env vars # TEST_SUCCESS is used because the return status of a for-loop is its last item, not the "fail if any of them do" wanted here override_dh_auto_test: -ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) +ifeq (testsuitedisabled,$(filter nocheck,$(DEB_BUILD_OPTIONS))) TEST_SUCCESS=true ; cd tools && for testpy3ver in `py3versions -vs` ; do \ - for testpath in ../.pybuild/*$${testpy3ver}*/*/statsmodels ; do PYTHONPATH=$${testpath}/.. python3 $(CURDIR)/debian/check_truncated_poisson.py ; \ + for testpath in ../.pybuild/*$${testpy3ver}*/*/statsmodels ; do \ PYTHONPATH=$${testpath}/.. python$${testpy3ver} -m pytest -v $${testpath} || TEST_SUCCESS=false ; \ rm -rf $${testpath}/.pytest_cache ; \ done ; done ; $${TEST_SUCCESS}