Version in base suite: 7.0.0-really-5.3.5-6 Base version: python-meshio_7.0.0-really-5.3.5-6 Target version: python-meshio_7.0.0-really-5.3.5-6+deb13u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/p/python-meshio/python-meshio_7.0.0-really-5.3.5-6.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/p/python-meshio/python-meshio_7.0.0-really-5.3.5-6+deb13u1.dsc changelog | 9 +++++++++ rules | 2 ++ tests/test-meshio | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmpbxwvec1f/python-meshio_7.0.0-really-5.3.5-6.dsc: no acceptable signature found dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmpbxwvec1f/python-meshio_7.0.0-really-5.3.5-6+deb13u1.dsc: no acceptable signature found diff -Nru python-meshio-7.0.0-really-5.3.5/debian/changelog python-meshio-7.0.0-really-5.3.5/debian/changelog --- python-meshio-7.0.0-really-5.3.5/debian/changelog 2025-05-06 23:29:54.000000000 +0000 +++ python-meshio-7.0.0-really-5.3.5/debian/changelog 2026-09-15 23:20:00.000000000 +0000 @@ -1,3 +1,12 @@ +python-meshio (7.0.0-really-5.3.5-6+deb13u1) trixie; urgency=medium + + * Team upload. + + [ Drew Parsons ] + * Skip test_read_from_file in test_vtu.py. Closes: #1134307. + + -- Santiago Vila Wed, 16 Sep 2026 01:20:00 +0200 + python-meshio (7.0.0-really-5.3.5-6) unstable; urgency=medium * debian patch vtu_cell_dtype.patch aligns vtu cell and offset dtype diff -Nru python-meshio-7.0.0-really-5.3.5/debian/rules python-meshio-7.0.0-really-5.3.5/debian/rules --- python-meshio-7.0.0-really-5.3.5/debian/rules 2025-05-06 23:29:54.000000000 +0000 +++ python-meshio-7.0.0-really-5.3.5/debian/rules 2026-09-15 23:20:00.000000000 +0000 @@ -6,6 +6,8 @@ export PYBUILD_NAME=meshio export PYBUILD_DESTDIR_python3=debian/python3-$(PYBUILD_NAME) +export PYBUILD_TEST_ARGS=-k "not (test_vtu and test_read_from_file)" + # Don't install files generated by the test suite (#892019). export PYBUILD_AFTER_TEST=find {build_dir} -maxdepth 1 -type f -delete diff -Nru python-meshio-7.0.0-really-5.3.5/debian/tests/test-meshio python-meshio-7.0.0-really-5.3.5/debian/tests/test-meshio --- python-meshio-7.0.0-really-5.3.5/debian/tests/test-meshio 2025-05-06 23:29:54.000000000 +0000 +++ python-meshio-7.0.0-really-5.3.5/debian/tests/test-meshio 2026-09-15 23:20:00.000000000 +0000 @@ -3,5 +3,5 @@ for py in $(py3versions -s 2>/dev/null); do cd "$AUTOPKGTEST_TMP" echo "Testing meshio with $py:" - $py -m pytest -v tests + $py -m pytest -v tests -k "not (test_vtu and test_read_from_file)" done