- 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 <plugwash@raspbian.org> 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 <root@raspbian.org> Fri, 17 Nov 2023 01:28:42 +0000
++ -- Raspbian forward porter <root@raspbian.org> 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 <rebecca_palmer@zoho.com> 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 <rebecca_palmer@zoho.com> 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 <rebecca_palmer@zoho.com> 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 <rebecca_palmer@zoho.com> Tue, 12 Dec 2023 20:07:17 +0000
statsmodels (0.14.0+dfsg-5) unstable; urgency=medium
# 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}