summaryrefslogtreecommitdiffstats
path: root/debian/patches/python_3.12.3.diff
diff options
context:
space:
mode:
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):