diff -Nru objgraph-3.5.0/debian/changelog objgraph-3.5.0/debian/changelog --- objgraph-3.5.0/debian/changelog 2022-11-29 00:37:02.000000000 +0000 +++ objgraph-3.5.0/debian/changelog 2022-12-03 00:42:38.000000000 +0000 @@ -1,3 +1,12 @@ +objgraph (3.5.0-6) unstable; urgency=medium + + * Team upload. + * d/control: add b-d on pytest to force tests to run via something other + than the deprecated "python3 setup.py test" command. + * d/tests: run tests with all available python versions. + + -- Louis-Philippe VĂ©ronneau Fri, 02 Dec 2022 19:42:38 -0500 + objgraph (3.5.0-5) unstable; urgency=medium [ Debian Janitor ] diff -Nru objgraph-3.5.0/debian/control objgraph-3.5.0/debian/control --- objgraph-3.5.0/debian/control 2022-11-29 00:37:02.000000000 +0000 +++ objgraph-3.5.0/debian/control 2022-12-03 00:39:54.000000000 +0000 @@ -10,7 +10,8 @@ python3-all, python3-graphviz, python3-setuptools, - python3-sphinx + python3-sphinx, + python3-pytest Standards-Version: 4.6.1 Homepage: https://mg.pov.lt/objgraph/ Vcs-Git: https://salsa.debian.org/python-team/packages/objgraph.git diff -Nru objgraph-3.5.0/debian/pybuild.testfiles objgraph-3.5.0/debian/pybuild.testfiles --- objgraph-3.5.0/debian/pybuild.testfiles 1970-01-01 00:00:00.000000000 +0000 +++ objgraph-3.5.0/debian/pybuild.testfiles 2022-12-03 00:40:08.000000000 +0000 @@ -0,0 +1 @@ +tests.py diff -Nru objgraph-3.5.0/debian/rules objgraph-3.5.0/debian/rules --- objgraph-3.5.0/debian/rules 2022-11-29 00:37:02.000000000 +0000 +++ objgraph-3.5.0/debian/rules 2022-12-03 00:39:38.000000000 +0000 @@ -1,6 +1,7 @@ #!/usr/bin/make -f export PYBUILD_NAME=objgraph +export PYBUILD_TEST_ARGS=-v tests.py %: dh $@ --with python3,sphinxdoc --buildsystem=pybuild diff -Nru objgraph-3.5.0/debian/tests/unittests3 objgraph-3.5.0/debian/tests/unittests3 --- objgraph-3.5.0/debian/tests/unittests3 2022-11-29 00:37:02.000000000 +0000 +++ objgraph-3.5.0/debian/tests/unittests3 2022-12-03 00:42:01.000000000 +0000 @@ -1,7 +1,7 @@ #!/bin/sh set -efu -pythons="$(py3versions -r 2> /dev/null)" +pythons="$(py3versions -s 2> /dev/null)" cp -a docs tests.py "$AUTOPKGTEST_TMP" cd "$AUTOPKGTEST_TMP"