New Upstream Snapshot - django-mailman3

Ready changes

Summary

Merged new upstream version: 1.3.9+git20230105.1.9d520b5 (was: 1.3.8).

Resulting package

Built on 2023-01-22T08:07 (took 14m8s)

The resulting binary packages can be installed (if you have the apt repository enabled) by running one of:

apt install -t fresh-snapshots python3-django-mailman3

Lintian Result

Diff

diff --git a/PKG-INFO b/PKG-INFO
index e122648..0c44655 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,13 +1,12 @@
 Metadata-Version: 2.1
 Name: django-mailman3
-Version: 1.3.8
+Version: 1.3.9
 Summary: Django library to help interaction with Mailman
 Home-page: https://gitlab.com/mailman/django-mailman3
 Maintainer: Mailman Developers
 Maintainer-email: mailman-developers@python.org
 License: GPLv3
 Keywords: mailman django
-Platform: UNKNOWN
 Classifier: Framework :: Django
 Classifier: Development Status :: 4 - Beta
 Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
@@ -29,6 +28,11 @@ in your Django server's settings file.
 NEWS
 ====
 
+1.3.9 (2022-01-04)
+------------------
+
+* Add support for Python 3.11.
+
 1.3.8 (2022-10-22)
 ------------------
 * Add support for Django 4.0 and 4.1 (Fixes #55)
@@ -88,5 +92,3 @@ Django-mailman is licensed under the
 `GPL v3.0 <http://www.gnu.org/licenses/gpl-3.0.html>`_
 
 Copyright (C) 2017-2020 by the Free Software Foundation, Inc.
-
-
diff --git a/README.rst b/README.rst
index 5b8bcdf..74c63d8 100644
--- a/README.rst
+++ b/README.rst
@@ -12,6 +12,11 @@ in your Django server's settings file.
 NEWS
 ====
 
+1.3.9 (2022-01-04)
+------------------
+
+* Add support for Python 3.11.
+
 1.3.8 (2022-10-22)
 ------------------
 * Add support for Django 4.0 and 4.1 (Fixes #55)
diff --git a/debian/changelog b/debian/changelog
index 911cc33..d7db013 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+django-mailman3 (1.3.9+git20230105.1.9d520b5-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Sun, 22 Jan 2023 07:56:22 -0000
+
 django-mailman3 (1.3.8-1) unstable; urgency=medium
 
   * New upstream release 1.3.8 (Closes: #1013500, #995222)
diff --git a/django_mailman3.egg-info/PKG-INFO b/django_mailman3.egg-info/PKG-INFO
index e122648..0c44655 100644
--- a/django_mailman3.egg-info/PKG-INFO
+++ b/django_mailman3.egg-info/PKG-INFO
@@ -1,13 +1,12 @@
 Metadata-Version: 2.1
 Name: django-mailman3
-Version: 1.3.8
+Version: 1.3.9
 Summary: Django library to help interaction with Mailman
 Home-page: https://gitlab.com/mailman/django-mailman3
 Maintainer: Mailman Developers
 Maintainer-email: mailman-developers@python.org
 License: GPLv3
 Keywords: mailman django
-Platform: UNKNOWN
 Classifier: Framework :: Django
 Classifier: Development Status :: 4 - Beta
 Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
@@ -29,6 +28,11 @@ in your Django server's settings file.
 NEWS
 ====
 
+1.3.9 (2022-01-04)
+------------------
+
+* Add support for Python 3.11.
+
 1.3.8 (2022-10-22)
 ------------------
 * Add support for Django 4.0 and 4.1 (Fixes #55)
@@ -88,5 +92,3 @@ Django-mailman is licensed under the
 `GPL v3.0 <http://www.gnu.org/licenses/gpl-3.0.html>`_
 
 Copyright (C) 2017-2020 by the Free Software Foundation, Inc.
-
-
diff --git a/django_mailman3.egg-info/requires.txt b/django_mailman3.egg-info/requires.txt
index 3276b99..085c191 100644
--- a/django_mailman3.egg-info/requires.txt
+++ b/django_mailman3.egg-info/requires.txt
@@ -1,5 +1,5 @@
-django<4.2,>=3.2
-mailmanclient>=3.3.3
 django-allauth
 django-gravatar2>=1.0.6
+django<4.2,>=3.2
+mailmanclient>=3.3.3
 pytz
diff --git a/django_mailman3/__init__.py b/django_mailman3/__init__.py
index e84d836..56fc950 100644
--- a/django_mailman3/__init__.py
+++ b/django_mailman3/__init__.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/admin.py b/django_mailman3/admin.py
index 1f28e9d..0eb1d9d 100644
--- a/django_mailman3/admin.py
+++ b/django_mailman3/admin.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/apps.py b/django_mailman3/apps.py
index 0d8051c..0cd7483 100644
--- a/django_mailman3/apps.py
+++ b/django_mailman3/apps.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/context_processors.py b/django_mailman3/context_processors.py
index d3f1438..471cb74 100644
--- a/django_mailman3/context_processors.py
+++ b/django_mailman3/context_processors.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/forms.py b/django_mailman3/forms.py
index 420fdde..31d75b4 100644
--- a/django_mailman3/forms.py
+++ b/django_mailman3/forms.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/lib/auth/fedora/__init__.py b/django_mailman3/lib/auth/fedora/__init__.py
index 52e4f75..42d30c4 100644
--- a/django_mailman3/lib/auth/fedora/__init__.py
+++ b/django_mailman3/lib/auth/fedora/__init__.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2012-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2012-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/lib/auth/fedora/provider.py b/django_mailman3/lib/auth/fedora/provider.py
index e1a52c2..b371fbb 100644
--- a/django_mailman3/lib/auth/fedora/provider.py
+++ b/django_mailman3/lib/auth/fedora/provider.py
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Copyright (C) 2012-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2012-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/lib/auth/fedora/urls.py b/django_mailman3/lib/auth/fedora/urls.py
index 3586186..ca371a8 100644
--- a/django_mailman3/lib/auth/fedora/urls.py
+++ b/django_mailman3/lib/auth/fedora/urls.py
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Copyright (C) 2012-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2012-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/lib/auth/fedora/views.py b/django_mailman3/lib/auth/fedora/views.py
index 223b4f2..505f9f7 100644
--- a/django_mailman3/lib/auth/fedora/views.py
+++ b/django_mailman3/lib/auth/fedora/views.py
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Copyright (C) 2012-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2012-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/lib/mailman.py b/django_mailman3/lib/mailman.py
index 8738a7b..9dae779 100644
--- a/django_mailman3/lib/mailman.py
+++ b/django_mailman3/lib/mailman.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/lib/paginator.py b/django_mailman3/lib/paginator.py
index a4d0373..8d568fc 100644
--- a/django_mailman3/lib/paginator.py
+++ b/django_mailman3/lib/paginator.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/lib/scrub.py b/django_mailman3/lib/scrub.py
index 16aa21b..15bc870 100644
--- a/django_mailman3/lib/scrub.py
+++ b/django_mailman3/lib/scrub.py
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Copyright (C) 2017-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2017-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/lib/user.py b/django_mailman3/lib/user.py
index a63e15d..e94362d 100644
--- a/django_mailman3/lib/user.py
+++ b/django_mailman3/lib/user.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2020-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2020-2023 by the Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License
diff --git a/django_mailman3/locale/de/LC_MESSAGES/django.po b/django_mailman3/locale/de/LC_MESSAGES/django.po
index 053de39..0f3e5bd 100644
--- a/django_mailman3/locale/de/LC_MESSAGES/django.po
+++ b/django_mailman3/locale/de/LC_MESSAGES/django.po
@@ -1,5 +1,5 @@
 # SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2018-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2018-2023 by the Free Software Foundation, Inc.
 # This file is distributed under the same license as the PACKAGE package.
 # Daniel <dsd.trash@gmail.com>, 2018
 #
diff --git a/django_mailman3/locale/id/LC_MESSAGES/django.po b/django_mailman3/locale/id/LC_MESSAGES/django.po
index a2cb04f..0d69488 100644
--- a/django_mailman3/locale/id/LC_MESSAGES/django.po
+++ b/django_mailman3/locale/id/LC_MESSAGES/django.po
@@ -6,10 +6,10 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
+"Report-Msgid-Bugs-To: mailman-developers@python.org\n"
 "POT-Creation-Date: 2022-05-18 17:38+0000\n"
-"PO-Revision-Date: 2021-06-12 00:44+0000\n"
-"Last-Translator: Reza Almanda <rezaalmanda27@gmail.com>\n"
+"PO-Revision-Date: 2022-11-09 17:30+0000\n"
+"Last-Translator: Neko Nekowazarashi <kodra@nekoweb.my.id>\n"
 "Language-Team: Indonesian <https://hosted.weblate.org/projects/gnu-mailman/"
 "django-mailman3/id/>\n"
 "Language: id\n"
@@ -17,27 +17,28 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.7-dev\n"
+"X-Generator: Weblate 4.15-dev\n"
 
 #: forms.py:32
 msgid "Username"
-msgstr ""
+msgstr "Nama pengguna"
 
 #: forms.py:33
 msgid "First name"
-msgstr ""
+msgstr "Nama depan"
 
 #: forms.py:34
+#, fuzzy
 msgid "Last name"
-msgstr ""
+msgstr "Nama belakang"
 
 #: forms.py:36
 msgid "Time zone"
-msgstr ""
+msgstr "Zona waktu"
 
 #: forms.py:43
 msgid "A user with that username already exists."
-msgstr ""
+msgstr "Pengguna dengan nama pengguna berikut sudah ada."
 
 #: templates/account/email.html:6
 #: templates/django_mailman3/profile/base.html:17
@@ -46,58 +47,62 @@ msgstr "Akun"
 
 #: templates/account/email.html:11
 msgid "The following e-mail addresses are associated with your account:"
-msgstr ""
+msgstr "Surel berikut terhubung dengan akun Anda:"
 
 #: templates/account/email.html:25
 msgid "Verified"
-msgstr ""
+msgstr "Terverifikasi"
 
 #: templates/account/email.html:27
+#, fuzzy
 msgid "Unverified"
-msgstr ""
+msgstr "Tidak terverifikasi"
 
 #: templates/account/email.html:29
 msgid "Primary"
-msgstr ""
+msgstr "Utama"
 
 #: templates/account/email.html:35
 msgid "Make Primary"
-msgstr ""
+msgstr "Buat Jadi Utama"
 
 #: templates/account/email.html:36
 msgid "Re-send Verification"
-msgstr ""
+msgstr "Kirim Ulang Verifikasi"
 
 #: templates/account/email.html:37 templates/socialaccount/connections.html:34
 msgid "Remove"
-msgstr ""
+msgstr "Hapus"
 
 #: templates/account/email.html:44
 msgid "Warning:"
-msgstr ""
+msgstr "Peringatan:"
 
 #: templates/account/email.html:44
 msgid ""
 "You currently do not have any e-mail address set up. You should really add "
 "an e-mail address so you can receive notifications, reset your password, etc."
 msgstr ""
+"Saat ini Anda tidak memiliki surel untuk akun Anda. Anda sebaiknya harus "
+"menambahkan sebuah alamat surel sehingga Anda bisa menerima notifikasi, "
+"mengatur ulang kata sandi, dll."
 
 #: templates/account/email.html:49
 msgid "Add E-mail Address"
-msgstr ""
+msgstr "Tambah Alamat Surel"
 
 #: templates/account/email.html:55
 msgid "Add E-mail"
-msgstr ""
+msgstr "Tambah Surel"
 
 #: templates/account/email.html:66
 msgid "Do you really want to remove the selected e-mail address?"
-msgstr ""
+msgstr "Apakah Anda yakin ingin menghapus surel yang dipilih?"
 
 #: templates/account/email_confirm.html:6
 #: templates/account/email_confirm.html:10
 msgid "Confirm E-mail Address"
-msgstr ""
+msgstr "Konfirmasi Alamat Surel"
 
 #: templates/account/email_confirm.html:16
 #, python-format
@@ -105,17 +110,21 @@ msgid ""
 "Please confirm that <a href=\"mailto:%(email)s\">%(email)s</a> is an e-mail "
 "address for user %(user_display)s."
 msgstr ""
+"Mohon konfirmasi bahwa <a href=\"mailto:%(email)s\">%(email)s</a> adalah "
+"alamat surel untuk %(user_display)s."
 
 #: templates/account/email_confirm.html:20
 msgid "Confirm"
-msgstr ""
+msgstr "Konfirmasi"
 
 #: templates/account/email_confirm.html:27
-#, python-format
+#, fuzzy, python-format
 msgid ""
 "This e-mail confirmation link expired or is invalid. Please <a href="
 "\"%(email_url)s\">issue a new e-mail confirmation request</a>."
 msgstr ""
+"Tautan konfirmasi surel ini sudah kedaluwarsa atau tidak valid. Mohon <a "
+"href=\"%(email_url)s\">kirim surel permintaan konfirmasi yang baru</a>."
 
 #: templates/account/login.html:7 templates/account/login.html:11
 #: templates/account/login.html:48
@@ -123,18 +132,20 @@ msgid "Sign In"
 msgstr "Masuk"
 
 #: templates/account/login.html:18
-#, python-format
+#, fuzzy, python-format
 msgid ""
 "Please sign in with one\n"
 "of your existing third party accounts. Or, <a href=\"%(signup_url)s\">sign "
 "up</a>\n"
 "for a %(site_name)s account and sign in below:"
 msgstr ""
+"Mohon masuk dengan salah satu akun pihak ketiga. Atau <a href=\"%(signup_url)"
+"s\">daftar</a> untuk akun di %(site_name)s dan daftar di bawah:"
 
 #: templates/account/login.html:30
 #: templates/django_mailman3/profile/profile.html:72
 msgid "or"
-msgstr ""
+msgstr "atau"
 
 #: templates/account/login.html:37
 #, python-format
@@ -142,49 +153,54 @@ msgid ""
 "If you have not created an account yet, then please\n"
 "<a href=\"%(signup_url)s\">sign up</a> first."
 msgstr ""
+"Jika Anda belum membuat akun, maka silakan <a href=\"%(signup_url)s\""
+">daftar</a> terlebih dahulu."
 
 #: templates/account/login.html:50
 msgid "Forgot Password?"
-msgstr ""
+msgstr "Lupa Kata Sandi?"
 
 #: templates/account/logout.html:5 templates/account/logout.html:8
 #: templates/account/logout.html:17
 msgid "Sign Out"
-msgstr ""
+msgstr "Keluar"
 
 #: templates/account/logout.html:10
 msgid "Are you sure you want to sign out?"
-msgstr ""
+msgstr "Apakah Anda yakin ingin keluar?"
 
 #: templates/account/password_change.html:12
 #: templates/account/password_reset_from_key.html:6
 #: templates/account/password_reset_from_key.html:9
 #: templates/django_mailman3/profile/base.html:20
 msgid "Change Password"
-msgstr ""
+msgstr "Ubah Kata Sandi"
 
 #: templates/account/password_reset.html:7
 #: templates/account/password_reset.html:11
 msgid "Password Reset"
-msgstr ""
+msgstr "Atur Ulang Kata Sandi"
 
 #: templates/account/password_reset.html:16
 msgid ""
 "Forgotten your password? Enter your e-mail address below, and we'll send you "
 "an e-mail allowing you to reset it."
 msgstr ""
+"Lupa kata sandi Anda? Masukkan surel Anda di bawah dan kami akan mengirimkan "
+"Anda sebuah surel untuk Anda mengatur ulangn kata sandi tersebut."
 
 #: templates/account/password_reset.html:22
 msgid "Reset My Password"
-msgstr ""
+msgstr "Atur Ulang Kata Sandi Saya"
 
 #: templates/account/password_reset.html:27
 msgid "Please contact us if you have any trouble resetting your password."
 msgstr ""
+"Kontak kami jika Anda memiliki masalah dalam mengatur ulang kata sandi Anda."
 
 #: templates/account/password_reset_from_key.html:9
 msgid "Bad Token"
-msgstr ""
+msgstr "Token Buruk"
 
 #: templates/account/password_reset_from_key.html:13
 #, python-format
@@ -193,22 +209,25 @@ msgid ""
 "used.  Please request a <a href=\"%(passwd_reset_url)s\">new password reset</"
 "a>."
 msgstr ""
+"Tautan atur ulang kata sandi tidak valid, kemungkinan karena sudah "
+"digunakan.  Silakan minta kembali <a href=\"%(passwd_reset_url)s\">atur "
+"ulang kata sandi baru</a>."
 
 #: templates/account/password_reset_from_key.html:20
 msgid "change password"
-msgstr ""
+msgstr "ubah kata sandi"
 
 #: templates/account/password_reset_from_key.html:25
 msgid "Your password is now changed."
-msgstr ""
+msgstr "Kata sandi Anda sudah diubah."
 
 #: templates/account/password_set.html:12
 msgid "Set Password"
-msgstr ""
+msgstr "Atur Kata Sandi"
 
 #: templates/account/signup.html:6 templates/socialaccount/signup.html:6
 msgid "Signup"
-msgstr ""
+msgstr "Daftar"
 
 #: templates/account/signup.html:9 templates/account/signup.html:20
 #: templates/socialaccount/signup.html:9 templates/socialaccount/signup.html:21
@@ -220,102 +239,109 @@ msgstr "Daftar"
 msgid ""
 "Already have an account? Then please <a href=\"%(login_url)s\">sign in</a>."
 msgstr ""
+"Sudah punya akun? Kalau begitu silakan <a href=\"%(login_url)s\">masuk</a>."
 
 #: templates/django_mailman3/paginator/pagination.html:45
 msgid "Jump to page:"
-msgstr ""
+msgstr "Loncat ke halaman:"
 
 #: templates/django_mailman3/paginator/pagination.html:63
 msgid "Results per page:"
-msgstr ""
+msgstr "Hasil per halaman:"
 
 #: templates/django_mailman3/paginator/pagination.html:79
 #: templates/django_mailman3/profile/profile.html:71
 msgid "Update"
-msgstr ""
+msgstr "Perbarui"
 
 #: templates/django_mailman3/profile/base.html:6
 msgid "User Profile"
-msgstr ""
+msgstr "Profil Pengguna"
 
 #: templates/django_mailman3/profile/base.html:13
 msgid "User profile"
-msgstr ""
+msgstr "Profil pengguna"
 
 #: templates/django_mailman3/profile/base.html:13
 msgid "for"
-msgstr ""
+msgstr "untuk"
 
 #: templates/django_mailman3/profile/base.html:23
 msgid "E-mail Addresses"
-msgstr ""
+msgstr "Alamat Surel"
 
 #: templates/django_mailman3/profile/base.html:30
 msgid "Account Connections"
-msgstr ""
+msgstr "Koneksi Akun"
 
 #: templates/django_mailman3/profile/base.html:35
 #: templates/django_mailman3/profile/delete_profile.html:16
 msgid "Delete Account"
-msgstr ""
+msgstr "Hapus Akun"
 
 #: templates/django_mailman3/profile/delete_profile.html:11
 msgid ""
 "Are you sure you want to delete your account? This will remove your account "
 "along with all your subscriptions."
 msgstr ""
+"Apakah Anda yakin ingin menghapus akun Anda? Ini akan menghapus akun Anda "
+"dan seluruh langganan Anda."
 
 #: templates/django_mailman3/profile/profile.html:20
 #: templates/django_mailman3/profile/profile.html:57
+#, fuzzy
 msgid "Edit on"
-msgstr ""
+msgstr "Sunting pada"
 
 #: templates/django_mailman3/profile/profile.html:28
 msgid "Primary email:"
-msgstr ""
+msgstr "Surel utama:"
 
 #: templates/django_mailman3/profile/profile.html:34
 msgid "Other emails:"
-msgstr ""
+msgstr "Surel lain:"
 
 #: templates/django_mailman3/profile/profile.html:40
 msgid "(no other email)"
-msgstr ""
+msgstr "(tidak ada surel lain)"
 
 #: templates/django_mailman3/profile/profile.html:45
 msgid "Link another address"
-msgstr ""
+msgstr "Tautkan alamat lain"
 
 #: templates/django_mailman3/profile/profile.html:53
 msgid "Avatar:"
-msgstr ""
+msgstr "Avatar:"
 
 #: templates/django_mailman3/profile/profile.html:63
 msgid "Joined on:"
-msgstr ""
+msgstr "Bergabung pada:"
 
 #: templates/django_mailman3/profile/profile.html:72
 msgid "cancel"
-msgstr ""
+msgstr "batal"
 
 #: templates/openid/login.html:10
 msgid "OpenID Sign In"
-msgstr ""
+msgstr "Masuk via OpenID"
 
 #: templates/socialaccount/connections.html:9
 msgid ""
 "You can sign in to your account using any of the following third party "
 "accounts:"
 msgstr ""
+"Anda bisa masuk ke akun Anda menggunakan salah satu dari akun pihak ketiga "
+"berikut:"
 
 #: templates/socialaccount/connections.html:42
 msgid ""
 "You currently have no social network accounts connected to this account."
 msgstr ""
+"Anda saat ini tidak memiliki akun jejaring sosial yang terhubung ke akun ini."
 
 #: templates/socialaccount/connections.html:45
 msgid "Add a 3rd Party Account"
-msgstr ""
+msgstr "Tambahkan Akun Pihak Ketiga"
 
 #: templates/socialaccount/signup.html:11
 #, python-format
@@ -323,31 +349,33 @@ msgid ""
 "You are about to use your %(provider_name)s account to login to\n"
 "%(site_name)s. As a final step, please complete the following form:"
 msgstr ""
+"Anda akan menggunakan akun %(provider_name)s untuk masuk ke %(site_name)s. "
+"Sebagai langkah terakhir, mohon selesaikan formulir di bawah ini:"
 
 #: templatetags/pagination.py:43
 msgid "Newer"
-msgstr ""
+msgstr "Lebih baru"
 
 #: templatetags/pagination.py:44
 msgid "Older"
-msgstr ""
+msgstr "Lebih lama"
 
 #: templatetags/pagination.py:46
 msgid "Previous"
-msgstr ""
+msgstr "Sebelumnya"
 
 #: templatetags/pagination.py:47
 msgid "Next"
-msgstr ""
+msgstr "Selanjutnya"
 
 #: views/profile.py:72
 msgid "The profile was successfully updated."
-msgstr ""
+msgstr "Profil ini berhasil diperbarui."
 
 #: views/profile.py:74
 msgid "No change detected."
-msgstr ""
+msgstr "Tidak ada perubahan yang terdeteksi."
 
 #: views/profile.py:110
 msgid "Successfully deleted account"
-msgstr ""
+msgstr "Berhasil menghapus akun"
diff --git a/django_mailman3/locale/ko/LC_MESSAGES/django.po b/django_mailman3/locale/ko/LC_MESSAGES/django.po
index 7542e4a..b6e95f5 100644
--- a/django_mailman3/locale/ko/LC_MESSAGES/django.po
+++ b/django_mailman3/locale/ko/LC_MESSAGES/django.po
@@ -6,10 +6,10 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
+"Report-Msgid-Bugs-To: mailman-developers@python.org\n"
 "POT-Creation-Date: 2022-05-18 17:38+0000\n"
-"PO-Revision-Date: 2021-05-14 08:32+0000\n"
-"Last-Translator: Lens0021 <lorentz0021@gmail.com>\n"
+"PO-Revision-Date: 2022-10-30 14:07+0000\n"
+"Last-Translator: 이정희 <daemul72@gmail.com>\n"
 "Language-Team: Korean <https://hosted.weblate.org/projects/gnu-mailman/"
 "django-mailman3/ko/>\n"
 "Language: ko\n"
@@ -17,23 +17,23 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.7-dev\n"
+"X-Generator: Weblate 4.14.2-dev\n"
 
 #: forms.py:32
 msgid "Username"
-msgstr ""
+msgstr "사용자이름"
 
 #: forms.py:33
 msgid "First name"
-msgstr ""
+msgstr "이름"
 
 #: forms.py:34
 msgid "Last name"
-msgstr ""
+msgstr "성"
 
 #: forms.py:36
 msgid "Time zone"
-msgstr ""
+msgstr "시간대"
 
 #: forms.py:43
 msgid "A user with that username already exists."
diff --git a/django_mailman3/locale/ru/LC_MESSAGES/django.po b/django_mailman3/locale/ru/LC_MESSAGES/django.po
index e0dfca7..1de2aa2 100644
--- a/django_mailman3/locale/ru/LC_MESSAGES/django.po
+++ b/django_mailman3/locale/ru/LC_MESSAGES/django.po
@@ -6,10 +6,10 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
+"Report-Msgid-Bugs-To: mailman-developers@python.org\n"
 "POT-Creation-Date: 2022-05-18 17:38+0000\n"
-"PO-Revision-Date: 2021-12-11 16:52+0000\n"
-"Last-Translator: Ivan Kuznetsov <kia@solvo.ru>\n"
+"PO-Revision-Date: 2022-11-25 11:46+0000\n"
+"Last-Translator: Alexander Ryazanov (alryaz) <alryaz@xavux.com>\n"
 "Language-Team: Russian <https://hosted.weblate.org/projects/gnu-mailman/"
 "django-mailman3/ru/>\n"
 "Language: ru\n"
@@ -19,7 +19,7 @@ msgstr ""
 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
 "%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
 "%100>=11 && n%100<=14)? 2 : 3);\n"
-"X-Generator: Weblate 4.10-dev\n"
+"X-Generator: Weblate 4.15-dev\n"
 
 #: forms.py:32
 msgid "Username"
@@ -156,8 +156,8 @@ msgid ""
 "If you have not created an account yet, then please\n"
 "<a href=\"%(signup_url)s\">sign up</a> first."
 msgstr ""
-"Если вы ещё не создали учетную запись, то пожалуйста\n"
-"<a href=\"%(signup_url)s\">войдите</a> сначала."
+"Если вы ещё не создали учётную запись, пожалуйста, пройдите сначала\n"
+"<a href=\"%(signup_url)s\">процедуру регистрации</a>."
 
 #: templates/account/login.html:50
 msgid "Forgot Password?"
diff --git a/django_mailman3/locale/sq/LC_MESSAGES/django.po b/django_mailman3/locale/sq/LC_MESSAGES/django.po
index 38236a8..9db42bc 100644
--- a/django_mailman3/locale/sq/LC_MESSAGES/django.po
+++ b/django_mailman3/locale/sq/LC_MESSAGES/django.po
@@ -6,9 +6,9 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
+"Report-Msgid-Bugs-To: mailman-developers@python.org\n"
 "POT-Creation-Date: 2022-05-18 17:38+0000\n"
-"PO-Revision-Date: 2021-09-21 09:38+0000\n"
+"PO-Revision-Date: 2023-01-05 13:50+0000\n"
 "Last-Translator: Besnik Bleta <besnik@programeshqip.org>\n"
 "Language-Team: Albanian <https://hosted.weblate.org/projects/gnu-mailman/"
 "django-mailman3/sq/>\n"
@@ -17,7 +17,7 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.9-dev\n"
+"X-Generator: Weblate 4.15.1-dev\n"
 
 #: forms.py:32
 msgid "Username"
diff --git a/django_mailman3/middleware/__init__.py b/django_mailman3/middleware/__init__.py
index d8586a0..0376ff6 100644
--- a/django_mailman3/middleware/__init__.py
+++ b/django_mailman3/middleware/__init__.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/models.py b/django_mailman3/models.py
index 82ebca7..5d56851 100644
--- a/django_mailman3/models.py
+++ b/django_mailman3/models.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/signals.py b/django_mailman3/signals.py
index be88e2b..e1d253a 100644
--- a/django_mailman3/signals.py
+++ b/django_mailman3/signals.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/static/django-mailman3/img/login/facebook.png b/django_mailman3/static/django-mailman3/img/login/facebook.png
index e4deee1..aab57d6 100644
Binary files a/django_mailman3/static/django-mailman3/img/login/facebook.png and b/django_mailman3/static/django-mailman3/img/login/facebook.png differ
diff --git a/django_mailman3/static/django-mailman3/img/login/github.png b/django_mailman3/static/django-mailman3/img/login/github.png
index e001402..c84cb7e 100644
Binary files a/django_mailman3/static/django-mailman3/img/login/github.png and b/django_mailman3/static/django-mailman3/img/login/github.png differ
diff --git a/django_mailman3/static/django-mailman3/img/login/openid.png b/django_mailman3/static/django-mailman3/img/login/openid.png
index b05b85d..9426b0d 100644
Binary files a/django_mailman3/static/django-mailman3/img/login/openid.png and b/django_mailman3/static/django-mailman3/img/login/openid.png differ
diff --git a/django_mailman3/static/django-mailman3/img/login/stackexchange.png b/django_mailman3/static/django-mailman3/img/login/stackexchange.png
index e661f1c..4adbe34 100644
Binary files a/django_mailman3/static/django-mailman3/img/login/stackexchange.png and b/django_mailman3/static/django-mailman3/img/login/stackexchange.png differ
diff --git a/django_mailman3/static/django-mailman3/img/login/stackoverflow.png b/django_mailman3/static/django-mailman3/img/login/stackoverflow.png
index 1a461e3..c2892f9 100644
Binary files a/django_mailman3/static/django-mailman3/img/login/stackoverflow.png and b/django_mailman3/static/django-mailman3/img/login/stackoverflow.png differ
diff --git a/django_mailman3/static/django-mailman3/img/login/twitter.png b/django_mailman3/static/django-mailman3/img/login/twitter.png
index e109661..247d289 100644
Binary files a/django_mailman3/static/django-mailman3/img/login/twitter.png and b/django_mailman3/static/django-mailman3/img/login/twitter.png differ
diff --git a/django_mailman3/static/django-mailman3/img/login/yahoo.png b/django_mailman3/static/django-mailman3/img/login/yahoo.png
index 7fdd240..7ada693 100644
Binary files a/django_mailman3/static/django-mailman3/img/login/yahoo.png and b/django_mailman3/static/django-mailman3/img/login/yahoo.png differ
diff --git a/django_mailman3/templatetags/bootstrap_tags.py b/django_mailman3/templatetags/bootstrap_tags.py
index 965bf80..9e5565b 100644
--- a/django_mailman3/templatetags/bootstrap_tags.py
+++ b/django_mailman3/templatetags/bootstrap_tags.py
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Copyright (C) 2012-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2012-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Postorius.
 #
diff --git a/django_mailman3/templatetags/d_gravatar.py b/django_mailman3/templatetags/d_gravatar.py
index 1c10672..a5ccca4 100644
--- a/django_mailman3/templatetags/d_gravatar.py
+++ b/django_mailman3/templatetags/d_gravatar.py
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Copyright (C) 2019-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2019-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django_Mailman3.
 #
diff --git a/django_mailman3/templatetags/pagination.py b/django_mailman3/templatetags/pagination.py
index 4146b8a..624d0bd 100644
--- a/django_mailman3/templatetags/pagination.py
+++ b/django_mailman3/templatetags/pagination.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/tests/test_bootstrap_tags.py b/django_mailman3/tests/test_bootstrap_tags.py
index c99f13d..d2a59c9 100644
--- a/django_mailman3/tests/test_bootstrap_tags.py
+++ b/django_mailman3/tests/test_bootstrap_tags.py
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Copyright (C) 2017-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2017-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/tests/test_context_processors.py b/django_mailman3/tests/test_context_processors.py
index 5d5f4a8..4b3b825 100644
--- a/django_mailman3/tests/test_context_processors.py
+++ b/django_mailman3/tests/test_context_processors.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/tests/test_delete_account.py b/django_mailman3/tests/test_delete_account.py
index d4e0522..3520332 100644
--- a/django_mailman3/tests/test_delete_account.py
+++ b/django_mailman3/tests/test_delete_account.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2018-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2018-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/tests/test_forms.py b/django_mailman3/tests/test_forms.py
index 66d62ae..a085d14 100644
--- a/django_mailman3/tests/test_forms.py
+++ b/django_mailman3/tests/test_forms.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/tests/test_lib_auth_fedora_provider.py b/django_mailman3/tests/test_lib_auth_fedora_provider.py
index a7567db..29c5508 100644
--- a/django_mailman3/tests/test_lib_auth_fedora_provider.py
+++ b/django_mailman3/tests/test_lib_auth_fedora_provider.py
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Copyright (C) 2017-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2017-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman3.
 #
diff --git a/django_mailman3/tests/test_lib_user.py b/django_mailman3/tests/test_lib_user.py
index 6f70c6a..0063e85 100644
--- a/django_mailman3/tests/test_lib_user.py
+++ b/django_mailman3/tests/test_lib_user.py
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Copyright (C) 2020-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2020-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/tests/test_mailman.py b/django_mailman3/tests/test_mailman.py
index e902d67..e6e49e7 100644
--- a/django_mailman3/tests/test_mailman.py
+++ b/django_mailman3/tests/test_mailman.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/tests/test_middlewares.py b/django_mailman3/tests/test_middlewares.py
index 0862343..52be9ce 100644
--- a/django_mailman3/tests/test_middlewares.py
+++ b/django_mailman3/tests/test_middlewares.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2017-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2017-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/tests/test_paginator.py b/django_mailman3/tests/test_paginator.py
index 2bc23c9..f78eb44 100644
--- a/django_mailman3/tests/test_paginator.py
+++ b/django_mailman3/tests/test_paginator.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/tests/test_scrub.py b/django_mailman3/tests/test_scrub.py
index 055c341..5bf9d2f 100644
--- a/django_mailman3/tests/test_scrub.py
+++ b/django_mailman3/tests/test_scrub.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/tests/test_signals.py b/django_mailman3/tests/test_signals.py
index 8049ba5..a6bc34d 100644
--- a/django_mailman3/tests/test_signals.py
+++ b/django_mailman3/tests/test_signals.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/tests/test_view_profile.py b/django_mailman3/tests/test_view_profile.py
index 0babdc7..0cdc8c1 100644
--- a/django_mailman3/tests/test_view_profile.py
+++ b/django_mailman3/tests/test_view_profile.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/tests/urls_test.py b/django_mailman3/tests/urls_test.py
index 33a605e..acc2f27 100644
--- a/django_mailman3/tests/urls_test.py
+++ b/django_mailman3/tests/urls_test.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/tests/utils.py b/django_mailman3/tests/utils.py
index dd73e19..9d45890 100644
--- a/django_mailman3/tests/utils.py
+++ b/django_mailman3/tests/utils.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/urls.py b/django_mailman3/urls.py
index 548dc4a..751a18f 100644
--- a/django_mailman3/urls.py
+++ b/django_mailman3/urls.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/views/profile.py b/django_mailman3/views/profile.py
index d42b6bb..38c0e3c 100644
--- a/django_mailman3/views/profile.py
+++ b/django_mailman3/views/profile.py
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 #
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/django_mailman3/views/user_adapter.py b/django_mailman3/views/user_adapter.py
index c472e9d..438562e 100644
--- a/django_mailman3/views/user_adapter.py
+++ b/django_mailman3/views/user_adapter.py
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Copyright (C) 2021-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2021-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
diff --git a/setup.py b/setup.py
index d41defc..bde097c 100755
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2016-2022 by the Free Software Foundation, Inc.
+# Copyright (C) 2016-2023 by the Free Software Foundation, Inc.
 #
 # This file is part of Django-Mailman.
 #
@@ -20,7 +20,7 @@ from setuptools import find_packages, setup
 
 setup(
     name="django-mailman3",
-    version="1.3.8",
+    version="1.3.9",
     description="Django library to help interaction with Mailman",
     long_description=open('README.rst').read(),
     maintainer="Mailman Developers",
diff --git a/tox.ini b/tox.ini
index f956fb8..dab82bb 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py{37,38,39,310}-django{32,40,41,latest},lint
+envlist = py{37,38,39,310.311}-django{32,40,41,latest},lint
 
 
 [testenv]

Debdiff

[The following lists of changes regard files as different if they have different names, permissions or owners.]

Files in second set of .debs but not in first

-rw-r--r--  root/root   /usr/lib/python3/dist-packages/django_mailman3-1.3.9.egg-info/PKG-INFO
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/django_mailman3-1.3.9.egg-info/dependency_links.txt
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/django_mailman3-1.3.9.egg-info/requires.txt
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/django_mailman3-1.3.9.egg-info/top_level.txt

Files in first set of .debs but not in second

-rw-r--r--  root/root   /usr/lib/python3/dist-packages/django_mailman3-1.3.8.egg-info/PKG-INFO
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/django_mailman3-1.3.8.egg-info/dependency_links.txt
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/django_mailman3-1.3.8.egg-info/requires.txt
-rw-r--r--  root/root   /usr/lib/python3/dist-packages/django_mailman3-1.3.8.egg-info/top_level.txt

No differences were encountered in the control files

More details

Full run details