diff -pruN 1.3.2-1/debian/changelog 1.3.2-4/debian/changelog
--- 1.3.2-1/debian/changelog	2024-06-04 22:41:39.000000000 +0000
+++ 1.3.2-4/debian/changelog	2025-12-20 15:25:54.000000000 +0000
@@ -1,8 +1,30 @@
+python-pika (1.3.2-4) unstable; urgency=medium
+
+  * Add upstream patch to fix tests with Python3.14 (Closes: #1123287)
+
+ -- Alexandre Detiste <tchet@debian.org>  Sat, 20 Dec 2025 16:25:54 +0100
+
+python-pika (1.3.2-3) unstable; urgency=medium
+
+  * Apply Multi-Arch: hint
+  * Rewrite d/watch in v5 format
+  * Add debian/salsa-ci.yml
+
+ -- Alexandre Detiste <tchet@debian.org>  Sun, 23 Nov 2025 12:32:54 +0100
+
+python-pika (1.3.2-2) unstable; urgency=medium
+
+  * Swap Maintainer <-> Uploaders per new Team Policy
+  * Add myself as uploader
+  * Trim d/rules
+
+ -- Alexandre Detiste <tchet@debian.org>  Wed, 27 Aug 2025 19:32:51 +0200
+
 python-pika (1.3.2-1) unstable; urgency=medium
 
   * Team Upload
   * New upstream version (Closes: #1054171)
-  * Repace Nose by Pytest (Closes: #1018554)
+  * Replace Nose by Pytest (Closes: #1018554)
   * Add pybuild-plugin-pyproject build dependency
   * Standards-Version: 4.7.0 (routine-update)
 
diff -pruN 1.3.2-1/debian/control 1.3.2-4/debian/control
--- 1.3.2-1/debian/control	2024-06-04 22:41:39.000000000 +0000
+++ 1.3.2-4/debian/control	2025-08-29 21:15:29.000000000 +0000
@@ -1,9 +1,10 @@
 Source: python-pika
 Section: python
 Priority: optional
-Maintainer: Jan Dittberner <jandd@debian.org>
+Maintainer: Debian Python Team <team+python@tracker.debian.org>
 Uploaders:
- Debian Python Team <team+python@tracker.debian.org>,
+ Jan Dittberner <jandd@debian.org>,
+ Alexandre Detiste <tchet@debian.org>,
 Build-Depends:
  debhelper-compat (= 13),
  dh-sequence-python3,
@@ -17,12 +18,12 @@ Build-Depends:
  python3-tornado,
  python3-twisted,
  python3-yaml,
-Standards-Version: 4.7.0
+Standards-Version: 4.7.2
 Homepage: https://pika.readthedocs.io/en/latest/
 Vcs-Git: https://salsa.debian.org/python-team/packages/python-pika.git
 Vcs-Browser: https://salsa.debian.org/python-team/packages/python-pika
-Testsuite: autopkgtest-pkg-python
-Rules-Requires-Root: no
+Testsuite: autopkgtest-pkg-pybuild
+X-Style: black
 
 Package: python-pika-doc
 Section: doc
@@ -41,6 +42,7 @@ Description: AMQP client library documen
 
 Package: python3-pika
 Architecture: all
+Multi-Arch: foreign
 Depends:
  ${misc:Depends},
  ${python3:Depends},
diff -pruN 1.3.2-1/debian/copyright 1.3.2-4/debian/copyright
--- 1.3.2-1/debian/copyright	2024-06-04 22:41:33.000000000 +0000
+++ 1.3.2-4/debian/copyright	2025-08-27 17:33:42.000000000 +0000
@@ -27,11 +27,6 @@ License: GPL-3+
  PURPOSE.  See the GNU General Public License for more
  details.
  .
- You should have received a copy of the GNU General Public
- License along with this package; if not, write to the Free
- Software Foundation, Inc., 51 Franklin St, Fifth Floor,
- Boston, MA  02110-1301 USA
- .
  On Debian systems, the full text of the GNU General Public
  License version 2 can be found in the file
  `/usr/share/common-licenses/GPL-3'.
diff -pruN 1.3.2-1/debian/patches/114dbb5bc8a88c056cfb72697390f5cf7957580e.patch 1.3.2-4/debian/patches/114dbb5bc8a88c056cfb72697390f5cf7957580e.patch
--- 1.3.2-1/debian/patches/114dbb5bc8a88c056cfb72697390f5cf7957580e.patch	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.2-4/debian/patches/114dbb5bc8a88c056cfb72697390f5cf7957580e.patch	2025-12-20 15:24:43.000000000 +0000
@@ -0,0 +1,26 @@
+From 114dbb5bc8a88c056cfb72697390f5cf7957580e Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@hroncok.cz>
+Date: Sat, 7 Jun 2025 20:06:42 +0200
+Subject: [PATCH] Fix tests with Python 3.14, except RuntimeError from
+ asyncio.get_event_loop
+
+Fixes https://github.com/pika/pika/issues/1479
+---
+ tests/unit/io_services_test_stubs_test.py | 6 +++++-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+--- a/tests/unit/io_services_test_stubs_test.py
++++ b/tests/unit/io_services_test_stubs_test.py
+@@ -42,7 +42,11 @@
+ if asyncio is not None:
+     if sys.platform == 'win32':
+         asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
+-    _SUPPORTED_LOOP_CLASSES.add(asyncio.get_event_loop().__class__)
++    try:
++        loop = asyncio.get_event_loop()
++    except RuntimeError:
++        loop = asyncio.new_event_loop()
++    _SUPPORTED_LOOP_CLASSES.add(loop.__class__)
+ 
+ 
+ class TestStartCalledFromOtherThreadAndWithVaryingNativeLoops(
diff -pruN 1.3.2-1/debian/patches/series 1.3.2-4/debian/patches/series
--- 1.3.2-1/debian/patches/series	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.2-4/debian/patches/series	2025-12-20 15:24:28.000000000 +0000
@@ -0,0 +1 @@
+114dbb5bc8a88c056cfb72697390f5cf7957580e.patch
diff -pruN 1.3.2-1/debian/rules 1.3.2-4/debian/rules
--- 1.3.2-1/debian/rules	2024-06-04 22:41:39.000000000 +0000
+++ 1.3.2-4/debian/rules	2025-11-23 11:47:21.000000000 +0000
@@ -10,16 +10,11 @@ export PYBUILD_TEST_ARGS={dir}/tests/uni
 %:
 	dh $@ --with=sphinxdoc --buildsystem=pybuild
 
-override_dh_auto_clean:
+execute_before_dh_auto_clean:
 	rm -rf docs/.build
-	dh_auto_clean
 
-override_dh_sphinxdoc:
-	PYTHONPATH=. PYTHON=python3 python3 -m sphinx -b html -d docs/.build/.doctrees -N docs $(CURDIR)/debian/python-pika-doc/usr/share/doc/python-pika-doc/html
-	dh_sphinxdoc
-
-override_dh_link:
-	dh_link
+execute_before_dh_sphinxdoc:
+	PYTHONPATH=. python3 -m sphinx -b html -d docs/.build/.doctrees -N docs $(CURDIR)/debian/python-pika-doc/usr/share/doc/python-pika-doc/html
 
 override_dh_compress:
 	dh_compress -X.py
diff -pruN 1.3.2-1/debian/salsa-ci.yml 1.3.2-4/debian/salsa-ci.yml
--- 1.3.2-1/debian/salsa-ci.yml	1970-01-01 00:00:00.000000000 +0000
+++ 1.3.2-4/debian/salsa-ci.yml	2025-10-27 13:55:24.000000000 +0000
@@ -0,0 +1,2 @@
+include:
+  - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/recipes/debian.yml
diff -pruN 1.3.2-1/debian/watch 1.3.2-4/debian/watch
--- 1.3.2-1/debian/watch	2024-06-04 22:40:25.000000000 +0000
+++ 1.3.2-4/debian/watch	2025-10-27 13:54:45.000000000 +0000
@@ -1,3 +1,5 @@
-version=4
-opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/python-pika-$1\.tar\.gz/ \
-  https://github.com/pika/pika/tags .*/v?(\d\S+)\.tar\.gz
+Version: 5
+
+Template: GitHub
+Owner: pika
+Project: pika
