From 0a0d053f29e80c883e116a1dc70aea327cc47429 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Wed, 23 Oct 2024 14:42:16 +0300 Subject: [PATCH] Add annotationlib for Python 3.14 --- tests/sources/python-modules.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/sources/python-modules.py b/tests/sources/python-modules.py index 8871d9ca..1c31adfd 100644 --- a/tests/sources/python-modules.py +++ b/tests/sources/python-modules.py @@ -236,6 +236,11 @@ standard_library.remove('uu') standard_library.remove('xdrlib') +if sys.version_info >= (3, 14): + standard_library.extend([ + 'annotationlib', + ]) + # Remove tkinter and Easter eggs excluded_modules = [ 'antigravity',