diff -pruN 0.23.0-0.1/debian/changelog 0.23.0-0.1ubuntu2/debian/changelog
--- 0.23.0-0.1/debian/changelog	2024-08-28 13:28:46.000000000 +0000
+++ 0.23.0-0.1ubuntu2/debian/changelog	2025-12-06 10:32:54.000000000 +0000
@@ -1,3 +1,24 @@
+libsass-python (0.23.0-0.1ubuntu2) resolute; urgency=medium
+
+  * No-change mass rebuild for Ubuntu 26.04 (LP: #2132257)
+
+ -- Sebastien Bacher <seb128@debian.org>  Sat, 06 Dec 2025 11:32:54 +0100
+
+libsass-python (0.23.0-0.1ubuntu1) plucky; urgency=medium
+
+  * Enable autopkgtests for Ubuntu MIR:
+    - d/control: Enable pybuild-autopkgtest.
+    - d/rules: Refactor to pass pytest args using PYBUILD_TEST variables
+      to support use in autopkgtest.
+
+ -- James Page <james.page@ubuntu.com>  Fri, 21 Feb 2025 11:36:39 +0000
+
+libsass-python (0.23.0-0.1build1) plucky; urgency=medium
+
+  * SRU: #2083480: No-change rebuild to add support for Python 3.13.
+
+ -- Matthias Klose <doko@ubuntu.com>  Wed, 13 Nov 2024 09:58:42 +0100
+
 libsass-python (0.23.0-0.1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -pruN 0.23.0-0.1/debian/control 0.23.0-0.1ubuntu2/debian/control
--- 0.23.0-0.1/debian/control	2024-08-28 13:28:46.000000000 +0000
+++ 0.23.0-0.1ubuntu2/debian/control	2025-02-21 10:10:27.000000000 +0000
@@ -1,5 +1,6 @@
 Source: libsass-python
-Maintainer: Frédéric Bonnard <frediz@debian.org>
+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
+XSBC-Original-Maintainer: Frédéric Bonnard <frediz@debian.org>
 Section: python
 Priority: optional
 Build-Depends: debhelper-compat (= 13),
@@ -19,6 +20,7 @@ Standards-Version: 4.6.1
 Homepage: https://sass.github.io/libsass-python
 Vcs-Git: https://salsa.debian.org/debian/libsass-python.git
 Vcs-Browser: https://salsa.debian.org/debian/libsass-python
+Testsuite: autopkgtest-pkg-pybuild
 
 Package: python3-libsass
 Architecture: any
diff -pruN 0.23.0-0.1/debian/rules 0.23.0-0.1ubuntu2/debian/rules
--- 0.23.0-0.1/debian/rules	2024-08-28 13:28:46.000000000 +0000
+++ 0.23.0-0.1ubuntu2/debian/rules	2025-02-21 11:21:12.000000000 +0000
@@ -3,15 +3,18 @@ export DH_VERBOSE=1
 export PYTHON_EGG_CACHE=$(CURDIR)/debian/tmp
 export DEB_BUILD_MAINT_OPTIONS = hardening=+all
 
+export PYBUILD_TEST_PYTEST=1
+export PYBUILD_TEST_ARGS=-k 'not DistutilsTestCase' $(CURDIR)/sasstests.py
+
 export SYSTEM_SASS = 1
 
-%: .libsass-upstream-version
+%:
 	dh $@ --with python3 --buildsystem=pybuild
 
 .libsass-upstream-version:
 	dpkg-query -f '$${Version}\n' -W libsass-dev|sed 's/-.*//' > .libsass-upstream-version
 
-override_dh_auto_build:
+override_dh_auto_build: .libsass-upstream-version
 	pybuild --build -p "$(shell py3versions -vr)"
 	# build doc once
 	pybuild -s custom --build -p $(shell py3versions -vd) \
@@ -26,14 +29,6 @@ override_dh_auto_install:
 	rm $(CURDIR)/debian/tmp/usr/lib/python*/dist-packages/sasstests.py
 	sed -i '1c#!/usr/bin/python3' $(CURDIR)/debian/tmp/usr/bin/pysassc
 
-override_dh_auto_test:
-ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
-	# Skip DistutilsTestCase.* to not rebuild sass again
-	pybuild -s custom --test -p "$(shell py3versions -vr)" \
-		--test-args="cd {build_dir}; \
-		{interpreter} -m pytest -k 'not DistutilsTestCase' sasstests.py"
-endif
-
 override_dh_auto_clean:
 	dh_auto_clean -O--buildsystem=pybuild
 	rm -fr libsass.egg-info .libsass-upstream-version
