Merge version 0.14.0+dfsg-5+rpi1 and 0.14.2+dfsg-1 to produce 0.14.2+dfsg-1+rpi1 archive/raspbian/0.14.2+dfsg-1+rpi1 raspbian/0.14.2+dfsg-1+rpi1
authorRaspbian automatic forward porter <root@raspbian.org>
Mon, 29 Jul 2024 06:13:48 +0000 (07:13 +0100)
committerRaspbian automatic forward porter <root@raspbian.org>
Mon, 29 Jul 2024 06:13:48 +0000 (07:13 +0100)
1  2 
debian/changelog
debian/rules

index 49965a71b3c0027457ec34b81cb0a08632bb3c7b,a19992301e107186b0801f19730de9cef9d65fbd..87f678c34c2cd24fdf251cb958fca91953cafdba
@@@ -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 <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
  
diff --cc debian/rules
index 83920d50399840bc94959db3db6e46070b458e49,a677edcb003413b8fd1511a3b63f29e8cebd72a0..334e1c87adb4f50e95953b4b5c108a2eb31850c9
@@@ -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}