diff -Nru statsmodels-0.11.1/debian/changelog statsmodels-0.11.1/debian/changelog --- statsmodels-0.11.1/debian/changelog 2020-04-24 14:17:04.000000000 +0000 +++ statsmodels-0.11.1/debian/changelog 2020-05-14 19:19:31.000000000 +0000 @@ -1,3 +1,13 @@ +statsmodels (0.11.1-2+rpi1) bullseye-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. + + -- Peter Michael Green Thu, 14 May 2020 19:19:31 +0000 + statsmodels (0.11.1-2) unstable; urgency=medium * Tests: don't require a numpy warning that doesn't exist on armel. diff -Nru statsmodels-0.11.1/debian/rules statsmodels-0.11.1/debian/rules --- statsmodels-0.11.1/debian/rules 2020-02-24 22:47:55.000000000 +0000 +++ statsmodels-0.11.1/debian/rules 2020-05-14 19:19:31.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 \ @@ -112,7 +112,7 @@ # 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}/.. python$${testpy3ver} -m pytest -v $${testpath} || TEST_SUCCESS=false ; \