diff -pruN 6.20251221/debian/changelog 7.20251223/debian/changelog
--- 6.20251221/debian/changelog	2025-12-21 21:07:09.000000000 +0000
+++ 7.20251223/debian/changelog	2025-12-23 12:04:11.000000000 +0000
@@ -1,3 +1,10 @@
+dh-python (7.20251223) unstable; urgency=medium
+
+  * Bump major-version, post-trixie (a little late).
+  * Fix pybuild --print (broken in the last upload).
+
+ -- Stefano Rivera <stefanor@debian.org>  Tue, 23 Dec 2025 08:04:11 -0400
+
 dh-python (6.20251221) unstable; urgency=medium
 
   [ Michael R. Crusoe ]
diff -pruN 6.20251221/pybuild 7.20251223/pybuild
--- 6.20251221/pybuild	2025-12-21 21:07:09.000000000 +0000
+++ 7.20251223/pybuild	2025-12-23 12:04:11.000000000 +0000
@@ -244,6 +244,7 @@ def main(cfg: argparse.Namespace) -> Non
         INSTALL = auto()
         TEST = auto()
         AUTOPKGTEST = auto()
+        PRINT_ARGS = auto()
 
     def get_args(
         context: Context,
diff -pruN 6.20251221/tests/tpb01/debian/rules 7.20251223/tests/tpb01/debian/rules
--- 6.20251221/tests/tpb01/debian/rules	2025-12-21 21:07:09.000000000 +0000
+++ 7.20251223/tests/tpb01/debian/rules	2025-12-23 12:04:11.000000000 +0000
@@ -5,6 +5,11 @@ export PYBUILD_NAME=foo
 %:
 	dh $@
 
+override_dh_auto_configure:
+	echo "Package name:"
+	../../pybuild --print package
+	../../pybuild --configure --verbose
+
 override_dh_auto_build:
 	../../pybuild --build --verbose
 
