diff -Nru reprotest-0.7.25/debian/changelog reprotest-0.7.26/debian/changelog --- reprotest-0.7.25/debian/changelog 2023-05-13 13:40:17.000000000 +0000 +++ reprotest-0.7.26/debian/changelog 2023-08-03 14:24:39.000000000 +0000 @@ -1,3 +1,11 @@ +reprotest (0.7.26) unstable; urgency=medium + + [ Vagrant Cascadian ] + * tox.ini: Update to use "pytest" which is needed for tox 4. Thanks to + Stefano Rivera. Closes: #1042918. + + -- Holger Levsen Thu, 03 Aug 2023 16:24:39 +0200 + reprotest (0.7.25) unstable; urgency=medium * Add python3-wheel to build-depends. Thanks to Stefano Rivera. Binary files /tmp/tmp1zc62_fg/WZlIPMTKcY/reprotest-0.7.25/dist/reprotest-0.7.25.tar.gz and /tmp/tmp1zc62_fg/5amdSrNELh/reprotest-0.7.26/dist/reprotest-0.7.25.tar.gz differ diff -Nru reprotest-0.7.25/dist/reprotest-0.7.25.tar.gz.asc reprotest-0.7.26/dist/reprotest-0.7.25.tar.gz.asc --- reprotest-0.7.25/dist/reprotest-0.7.25.tar.gz.asc 1970-01-01 00:00:00.000000000 +0000 +++ reprotest-0.7.26/dist/reprotest-0.7.25.tar.gz.asc 2023-05-13 13:43:20.000000000 +0000 @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEEuL9UE3sJ01zwJv6dCRq4VgaaqhwFAmRfk/gACgkQCRq4Vgaa +qhyUYRAAttVUfIUp6ED0fsYThADs5VzLD3bRB9jit9BSQcUxycXCAIG4xdKWIvdA +Pdwrd5AnmzbRo4UiriQEzi1HGLioWUYtv/bM8Jup3mZTwI2Z6fsOQRBQn705uk6p +6eSigBzpLQGHEIARqEkszchk8kp5150uTIUfCzWrnzUZvps8VieUSDSZ7C14Cpcu +BOMyJt8F7GI9aq5JNn+sqX9wUU0VpF2aeUOzipbm1i0CcL58jdt1qsbzwe67xtl2 +w0+x6miPoLRa9rSjdKBDEwi4pY2V863GXeNOk/kTFc4HbRaRvN2eDGsHMyFMffa+ +rvfBiS3bkt5rBhWzqv2M7cUcXIVYANOv46bdjm/M6lAq5Jl35/zl/O29ZiG8ayQs +q6wEq/gg+xD5X1D+UDwAUN1+k/CaeK9XYywAgOKemP0HPbvZ+fgBYS/hxdTFMYy2 +8yVBW8iMxukdvnEczx6na93QHk0rcrZTefZESSTyM8PcFiBGZ4/0KtkPP/dUmeky +egNkOIKsM4Bf1qHyafJUuV2mTCO3KSKyEY7gj2sMElgyaaqGvVuJk12I7Za4+0NX +A3HJQ5uxdEinXTBtLhJPsTp+4Jv00kEFhPHSaYRJNKX8fiZOJejeHRNknt/q/Awl +CeftfXUIRde6JmcIfIyK7L2PrJTQ4i+aRaRebf80iC/lMAlkepc= +=lZwW +-----END PGP SIGNATURE----- diff -Nru reprotest-0.7.25/setup.py reprotest-0.7.26/setup.py --- reprotest-0.7.25/setup.py 2023-05-12 13:02:17.000000000 +0000 +++ reprotest-0.7.26/setup.py 2023-05-13 13:44:08.000000000 +0000 @@ -6,7 +6,7 @@ from setuptools import setup, find_packages setup(name='reprotest', - version='0.7.25', + version='0.7.26', description='Build packages and check them for reproducibility.', long_description=open('README.rst', encoding='utf-8').read(), author='Ximin Luo, Ceridwen', diff -Nru reprotest-0.7.25/tox.ini reprotest-0.7.26/tox.ini --- reprotest-0.7.25/tox.ini 2023-05-11 12:52:30.000000000 +0000 +++ reprotest-0.7.26/tox.ini 2023-08-03 14:23:23.000000000 +0000 @@ -22,6 +22,6 @@ diffoscope # pytest-cov pytest -# commands = py.test --cov-report html --cov=reprotest tests/tests.py -commands = {envpython} -m coverage run --omit .tox/* --parallel -m py.test {posargs} tests/ -# commands = py.test {posargs} tests/tests.py +# commands = pytest --cov-report html --cov=reprotest tests/tests.py +commands = {envpython} -m coverage run --omit .tox/* --parallel -m pytest {posargs} tests/ +# commands = pytest {posargs} tests/tests.py