diff -Nru statsmodels-0.13.2+dfsg/debian/changelog statsmodels-0.13.2+dfsg/debian/changelog --- statsmodels-0.13.2+dfsg/debian/changelog 2022-03-27 11:20:47.000000000 +0000 +++ statsmodels-0.13.2+dfsg/debian/changelog 2022-04-18 16:18:40.000000000 +0000 @@ -1,3 +1,13 @@ +statsmodels (0.13.2+dfsg-2+rpi1) bookworm-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, 18 Apr 2022 16:18:40 +0000 + statsmodels (0.13.2+dfsg-2) unstable; urgency=medium * Tests: ignore a probable rounding issue. (Closes: #1008301) diff -Nru statsmodels-0.13.2+dfsg/debian/rules statsmodels-0.13.2+dfsg/debian/rules --- statsmodels-0.13.2+dfsg/debian/rules 2022-02-06 13:22:33.000000000 +0000 +++ statsmodels-0.13.2+dfsg/debian/rules 2022-04-18 16:18:40.000000000 +0000 @@ -40,7 +40,7 @@ : # Build Documentation -- assure existence of build/html for nodoc : # Reproducibility: stopping the clock (or slowing it down enough to get all 00:00:00) with faketime (near-)hangs in glm_weights.ipynb mkdir -p build/html -ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS))) +ifeq (docdisabled,$(filter nodoc,$(DEB_BUILD_OPTIONS))) python3 debian/datasets/prepopulate_cache.py PYTHONPATH=$(shell pybuild --print build_dir --interpreter python3) \ BUILDDIR=$(CURDIR)/build \ @@ -101,7 +101,7 @@ # 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 and mips64el, #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 \ PYTHONPATH=$${testpath}/.. python$${testpy3ver} -m pytest -v $${testpath} || TEST_SUCCESS=false ; \