From 2c79d832e4ca0e99e9e3a1bca9ec47da4fc0fc15 Mon Sep 17 00:00:00 2001
From: fspreck <f.spreckelsen@indiscale.com>
Date: Fri, 12 Apr 2024 15:47:17 +0200
Subject: [PATCH] PIPELINE: Fix missing rust dependency for Python 3.13

---
 .gitlab-ci.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1c11ebfe..0548d383 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -70,6 +70,7 @@ unittest_py3.8:
   script: &python_test_script
     # Python docker has problems with tox and pip so use plain pytest here
     - touch ~/.pylinkahead.ini
+    - pip install cargo;python_version>="3.13"  # TODO: Check whether this is still necessary after an official 3.13 release
     - pip install pynose pytest pytest-cov jsonschema>=4.4.0 setuptools
     - pip install .
     - python -m pytest unittests
-- 
GitLab