From: Raspbian automatic forward porter Date: Fri, 17 Nov 2023 01:28:43 +0000 (+0000) Subject: Merge version 0.13.5+dfsg-7+rpi1 and 0.14.0+dfsg-5 to produce 0.14.0+dfsg-5+rpi1 X-Git-Tag: archive/raspbian/0.14.0+dfsg-5+rpi1^0 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=29a95b1ab224fdc08858548f6c36e1632208e94a;p=statsmodels.git Merge version 0.13.5+dfsg-7+rpi1 and 0.14.0+dfsg-5 to produce 0.14.0+dfsg-5+rpi1 --- 29a95b1ab224fdc08858548f6c36e1632208e94a diff --cc debian/changelog index 0ca0bf1,07c6e5f..49965a7 --- a/debian/changelog +++ b/debian/changelog @@@ -1,12 -1,41 +1,51 @@@ - statsmodels (0.13.5+dfsg-7+rpi1) bookworm-staging; urgency=medium ++statsmodels (0.14.0+dfsg-5+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 Mon, 27 Feb 2023 10:44:40 +0000 ++ -- Raspbian forward porter Fri, 17 Nov 2023 01:28:42 +0000 ++ + statsmodels (0.14.0+dfsg-5) unstable; urgency=medium + + * Allow building with Cython 3.0 (Closes: LP: #2043284) and cp 9.2. + * Docs reproducibility: strip object addresses, fix random seeds. + + -- Rebecca N. Palmer Sat, 11 Nov 2023 20:34:28 +0000 + + statsmodels (0.14.0+dfsg-4) unstable; urgency=medium + + * clean: remove all generated files. (Closes: #1047280) + * Stop build-depending on python3-setuptools-scm-git-archive. + (Closes: #1050104) + + -- Rebecca N. Palmer Sat, 19 Aug 2023 21:59:16 +0100 + + statsmodels (0.14.0+dfsg-3) unstable; urgency=medium + + * Tests: fix bugs in the preceding exclusions. + + -- Rebecca N. Palmer Fri, 04 Aug 2023 18:42:09 +0100 + + statsmodels (0.14.0+dfsg-2) unstable; urgency=medium + + * Tests: ignore out-of-memory error. + * Tests: ignore armel's lack of division-by-0 warnings and + corr_nearest_factor non-convergence, but not all the armel tests. + * Tests: ignore mips*'s extra multiply-by-NaN warnings. + * Tests: ignore i386 probable rounding/instability/overflow issues. + * Upload to unstable. + + -- Rebecca N. Palmer Thu, 03 Aug 2023 22:28:34 +0100 + + statsmodels (0.14.0+dfsg-1) experimental; urgency=medium + + * New upstream release. Drop/refresh patches, d/copyright. + * Upload to experimental, as of unknown compatibility. + + -- Rebecca N. Palmer Sun, 23 Jul 2023 12:01:09 +0100 statsmodels (0.13.5+dfsg-7) unstable; urgency=medium diff --cc debian/rules index 7baf0a7,26aecc6..83920d5 --- a/debian/rules +++ b/debian/rules @@@ -99,14 -100,13 +100,13 @@@ override_dh_install # the cd is to be "anywhere but pkgroot" to avoid subprocesses (test_lazy_imports) importing the source tree (current directory is tried before PYTHONPATH), which doesn't work because the built .so files aren't there # 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 - # Tests are ignored (and expected to possibly crash) on armel, #968210 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 \ + for testpath in ../.pybuild/*$${testpy3ver}*/*/statsmodels ; do PYTHONPATH=$${testpath}/.. python3 $(CURDIR)/debian/check_truncated_poisson.py ; \ PYTHONPATH=$${testpath}/.. python$${testpy3ver} -m pytest -v $${testpath} || TEST_SUCCESS=false ; \ rm -rf $${testpath}/.pytest_cache ; \ - done ; done ; [ `dpkg --print-architecture` = armel ] || $${TEST_SUCCESS} + done ; done ; $${TEST_SUCCESS} endif ## immediately useable documentation and exemplar scripts/data