summaryrefslogtreecommitdiffstats
path: root/debian/patches/python_3.12.3.diff
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-14 19:11:17 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-14 19:11:17 +0000
commitc8e8f0878241b3fcd8f1f3b24f2a04f2c7f6a33d (patch)
tree13e4a3f67bc1d3a3401553b10391ce703ad2dc38 /debian/patches/python_3.12.3.diff
parentAdding debian version 7.2.6-6. (diff)
downloadsphinx-c8e8f0878241b3fcd8f1f3b24f2a04f2c7f6a33d.tar.xz
sphinx-c8e8f0878241b3fcd8f1f3b24f2a04f2c7f6a33d.zip
Adding debian version 7.2.6-7.debian/7.2.6-7
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/patches/python_3.12.3.diff')
-rw-r--r--debian/patches/python_3.12.3.diff25
1 files changed, 25 insertions, 0 deletions
diff --git a/debian/patches/python_3.12.3.diff b/debian/patches/python_3.12.3.diff
new file mode 100644
index 0000000..5df6857
--- /dev/null
+++ b/debian/patches/python_3.12.3.diff
@@ -0,0 +1,25 @@
+From: James Addison <55152140+jayaddison@users.noreply.github.com>
+Date: Fri, 8 Mar 2024 10:58:04 +0000
+Subject: [tests] reflect changes to Enum signature in Python 3.12.3 (#12054)
+
+(cherry picked from commit 5523c9bbe4d1415777669330411d4f00ad802f18)
+---
+ tests/test_ext_autodoc.py | 5 ++++-
+ 1 file changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/tests/test_ext_autodoc.py b/tests/test_ext_autodoc.py
+index 7062763..5f63214 100644
+--- a/tests/test_ext_autodoc.py
++++ b/tests/test_ext_autodoc.py
+@@ -1407,7 +1407,10 @@ def test_enum_class(app):
+ options = {"members": None}
+ actual = do_autodoc(app, 'class', 'target.enums.EnumCls', options)
+
+- if sys.version_info[:2] >= (3, 12):
++ if sys.version_info[:3] >= (3, 12, 3):
++ args = ('(value, names=<not given>, *values, module=None, '
++ 'qualname=None, type=None, start=1, boundary=None)')
++ elif sys.version_info[:2] >= (3, 12):
+ args = ('(value, names=None, *values, module=None, '
+ 'qualname=None, type=None, start=1, boundary=None)')
+ elif sys.version_info[:2] >= (3, 11):