diff -pruN 1.4.1-1/.github/workflows/tests.yml 1.4.2-1/.github/workflows/tests.yml
--- 1.4.1-1/.github/workflows/tests.yml	2024-05-29 13:57:30.000000000 +0000
+++ 1.4.2-1/.github/workflows/tests.yml	2025-06-26 12:35:34.000000000 +0000
@@ -12,17 +12,31 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
-        django-version: ["3.2", "4.2", "5.0"]
+        python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
+        django-version: ["3.2", "4.2", "5.0", "5.1", "5.2"]
         exclude:
           - python-version: 3.11
             django-version: 3.2
           - python-version: 3.12
             django-version: 3.2
+          - python-version: 3.13
+            django-version: 3.2
+          - python-version: 3.13
+            django-version: 4.2
+          - python-version: 3.13
+            django-version: 5.0
           - python-version: 3.8
             django-version: 5.0
           - python-version: 3.9
             django-version: 5.0
+          - python-version: 3.8
+            django-version: 5.1
+          - python-version: 3.9
+            django-version: 5.1
+          - python-version: 3.8
+            django-version: 5.2
+          - python-version: 3.9
+            django-version: 5.2
 
     steps:
     - uses: actions/checkout@v4
diff -pruN 1.4.1-1/CHANGELOG.md 1.4.2-1/CHANGELOG.md
--- 1.4.1-1/CHANGELOG.md	2024-05-29 13:57:30.000000000 +0000
+++ 1.4.2-1/CHANGELOG.md	2025-06-26 12:35:34.000000000 +0000
@@ -1,5 +1,8 @@
 # Changes for django-sass-processor
 
+- 1.4.2
+* Add support for Python 3.13 and Django 5.2.
+
 - 1.4.1
 * Fix compatibility with Django 5.1.
 
diff -pruN 1.4.1-1/debian/changelog 1.4.2-1/debian/changelog
--- 1.4.1-1/debian/changelog	2024-12-15 10:05:13.000000000 +0000
+++ 1.4.2-1/debian/changelog	2025-09-28 19:08:36.000000000 +0000
@@ -1,3 +1,11 @@
+django-sass-processor (1.4.2-1) unstable; urgency=medium
+
+  * Team upload.
+  * New upstream release.
+  * Standards-Version: 4.7.2.
+
+ -- Colin Watson <cjwatson@debian.org>  Sun, 28 Sep 2025 20:08:36 +0100
+
 django-sass-processor (1.4.1-1) unstable; urgency=medium
 
   * Team upload.
diff -pruN 1.4.1-1/debian/control 1.4.2-1/debian/control
--- 1.4.1-1/debian/control	2024-12-15 10:05:13.000000000 +0000
+++ 1.4.2-1/debian/control	2025-09-28 19:08:36.000000000 +0000
@@ -15,7 +15,7 @@ Build-Depends: debhelper-compat (= 13),
                python3-setuptools,
                python3-pytest,
                python3-pytest-django,
-Standards-Version: 4.6.2
+Standards-Version: 4.7.2
 Homepage: https://github.com/jrief/django-sass-processor
 Vcs-Browser: https://salsa.debian.org/python-team/packages/django-sass-processor
 Vcs-Git: https://salsa.debian.org/python-team/packages/django-sass-processor.git
diff -pruN 1.4.1-1/sass_processor/__init__.py 1.4.2-1/sass_processor/__init__.py
--- 1.4.1-1/sass_processor/__init__.py	2024-05-29 13:57:30.000000000 +0000
+++ 1.4.2-1/sass_processor/__init__.py	2025-06-26 12:35:34.000000000 +0000
@@ -18,4 +18,4 @@ Release logic:
 13. git push
 """
 
-__version__ = '1.4.1'
+__version__ = '1.4.2'
diff -pruN 1.4.1-1/setup.cfg 1.4.2-1/setup.cfg
--- 1.4.1-1/setup.cfg	2024-05-29 13:57:30.000000000 +0000
+++ 1.4.2-1/setup.cfg	2025-06-26 12:35:34.000000000 +0000
@@ -24,9 +24,12 @@ classifiers =
     Programming Language :: Python :: 3.10
     Programming Language :: Python :: 3.11
     Programming Language :: Python :: 3.12
+    Programming Language :: Python :: 3.13
     Framework :: Django :: 3.2
     Framework :: Django :: 4.2
     Framework :: Django :: 5.0
+    Framework :: Django :: 5.1
+    Framework :: Django :: 5.2
 
 [options]
 packages = find:
