From 84ea560e1133b7ca8e734f724ce1fa2078bace0b Mon Sep 17 00:00:00 2001 From: Christian Gmeiner Date: Tue, 28 Oct 2025 23:25:57 +0100 Subject: [PATCH] bin/ci: Update python-gitlab to 5.x for Python 3.14 compatibility Update python-gitlab from 4.x to 5.x to fix AttributeError with __annotations__ when running on Python 3.14. The 4.x series is incompatible with Python 3.14 due to changes in how class annotations are handled. Signed-off-by: Christian Gmeiner Part-of: --- bin/ci/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ci/requirements.txt b/bin/ci/requirements.txt index 5ba50a48c2c..e269c0bde7a 100644 --- a/bin/ci/requirements.txt +++ b/bin/ci/requirements.txt @@ -6,7 +6,7 @@ kaleido==0.2.* pandas==2.* plotly==5.* python-dateutil==2.* -python-gitlab==4.* +python-gitlab==5.* rich==14.1.* ruamel.yaml.clib==0.2.* ruamel.yaml==0.17.*