diff -pruN 5.3.2-5/debian/changelog 5.3.2-6/debian/changelog
--- 5.3.2-5/debian/changelog	2024-11-17 12:49:54.000000000 +0000
+++ 5.3.2-6/debian/changelog	2025-08-08 15:12:44.000000000 +0000
@@ -1,3 +1,12 @@
+influxdb-python (5.3.2-6) unstable; urgency=medium
+
+  * Team upload.
+  * Patch-out usage of python3-mock
+  * Bump Standards-Version to 4.7.2
+  * Reformat d/control with debputy
+
+ -- Alexandre Detiste <tchet@debian.org>  Fri, 08 Aug 2025 17:12:44 +0200
+
 influxdb-python (5.3.2-5) unstable; urgency=medium
 
   * Team upload.
diff -pruN 5.3.2-5/debian/control 5.3.2-6/debian/control
--- 5.3.2-5/debian/control	2024-11-16 20:55:57.000000000 +0000
+++ 5.3.2-6/debian/control	2025-08-08 15:12:18.000000000 +0000
@@ -1,31 +1,35 @@
 Source: influxdb-python
 Maintainer: Debian Python Team <team+python@tracker.debian.org>
-Uploaders: Alexandre Viau <aviau@debian.org>
+Uploaders:
+ Alexandre Viau <aviau@debian.org>,
 Section: python
 Testsuite: autopkgtest-pkg-python
 Priority: optional
-Build-Depends: debhelper-compat (= 13),
-               dh-sequence-python3,
-               python3-all,
-               python3-setuptools
-Build-Depends-Indep: python3-requests,
-                     python3-mock,
-                     python3-msgpack,
-                     python3-requests-mock,
-                     python3-pytest,
-                     python3-pandas
-Standards-Version: 4.6.2
+Build-Depends:
+ debhelper-compat (= 13),
+ dh-sequence-python3,
+ python3-all,
+ python3-setuptools,
+Build-Depends-Indep:
+ python3-msgpack,
+ python3-pandas,
+ python3-pytest,
+ python3-requests,
+ python3-requests-mock,
+Standards-Version: 4.7.2
 Vcs-Browser: https://salsa.debian.org/python-team/packages/influxdb-python
 Vcs-Git: https://salsa.debian.org/python-team/packages/influxdb-python.git
 Homepage: https://github.com/influxdata/influxdb-python
 Rules-Requires-Root: no
+X-Style: black
 
 Package: python3-influxdb
 Architecture: all
-Depends: ${misc:Depends},
-         ${python3:Depends},
-         python3-msgpack,
-         python3-requests,
+Depends:
+ python3-msgpack,
+ python3-requests,
+ ${misc:Depends},
+ ${python3:Depends},
 Description: Client for InfluxDB - Python 3.x
  API bindings for InfluxDB. Supports both InfluxDB v0.8 and InfluxDB >= 0.9.
  InfluxDB is an open source distributed time series database with no external
diff -pruN 5.3.2-5/debian/patches/remove_mock.patch 5.3.2-6/debian/patches/remove_mock.patch
--- 5.3.2-5/debian/patches/remove_mock.patch	1970-01-01 00:00:00.000000000 +0000
+++ 5.3.2-6/debian/patches/remove_mock.patch	2025-06-30 02:24:29.000000000 +0000
@@ -0,0 +1,57 @@
+Description: remove need for python3-six
+Author: Alexandre Detiste <tchet@debian.org>
+Forwarded: no, project is archived
+
+--- a/influxdb/tests/client_test.py
++++ b/influxdb/tests/client_test.py
+@@ -27,7 +27,7 @@
+ import io
+ import gzip
+ import json
+-import mock
++from unittest import mock
+ import requests
+ import requests.exceptions
+ import requests_mock
+--- a/influxdb/tests/helper_test.py
++++ b/influxdb/tests/helper_test.py
+@@ -11,7 +11,7 @@
+ import unittest
+ import warnings
+ 
+-import mock
++from unittest import mock
+ from influxdb import SeriesHelper, InfluxDBClient
+ from requests.exceptions import ConnectionError
+ 
+--- a/influxdb/tests/influxdb08/client_test.py
++++ b/influxdb/tests/influxdb08/client_test.py
+@@ -8,7 +8,7 @@
+ import random
+ import warnings
+ 
+-import mock
++from unittest import mock
+ import requests
+ import requests.exceptions
+ import requests_mock
+@@ -34,7 +34,7 @@
+         return newfunc
+     return decorate
+ 
+-from mock import patch
++from unittest.mock import patch
+ 
+ from influxdb.influxdb08 import InfluxDBClient
+ from influxdb.influxdb08.client import session
+--- a/influxdb/tests/influxdb08/helper_test.py
++++ b/influxdb/tests/influxdb08/helper_test.py
+@@ -4,7 +4,7 @@
+ import unittest
+ import warnings
+ 
+-import mock
++from unittest import mock
+ from influxdb.influxdb08 import SeriesHelper, InfluxDBClient
+ from requests.exceptions import ConnectionError
+ 
diff -pruN 5.3.2-5/debian/patches/series 5.3.2-6/debian/patches/series
--- 5.3.2-5/debian/patches/series	2024-11-16 20:55:50.000000000 +0000
+++ 5.3.2-6/debian/patches/series	2025-06-30 02:00:13.000000000 +0000
@@ -7,3 +7,4 @@ SyntaxWarning
 pandas2.2.patch
 nose.patch
 remove_six.patch
+remove_mock.patch
