From 8e99dd54336155df051c86d909c4f65f587519d8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20M=C3=B6bius?= <moebius@cs.rwth-aachen.de>
Date: Tue, 14 Nov 2023 11:57:35 +0100
Subject: [PATCH] Updated Linux to python 3.11

---
 .gitlab-ci.yml | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index add86a4..5f1cff3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -20,7 +20,7 @@ build-3.9-VS2017:
     paths:
       - dist3/
       
-build-3.9-linux:
+build-3.11-linux:
   stage:
     build
   tags:
@@ -28,7 +28,7 @@ build-3.9-linux:
   variables:
     GIT_SUBMODULE_STRATEGY: recursive
   script:
-    - virtualenv -p python3.9 .
+    - virtualenv -p python3.11 .
     - source bin/activate
     - python setup.py bdist_wheel --dist-dir dist3
   artifacts:
@@ -79,16 +79,16 @@ test-3.9-VS2017:
   script: "CI\\test-3.9-VS2017.bat"
 
     
-test-3.9-linux:
+test-3.11-linux:
   stage:
     test
   tags:
     - Linux
   dependencies:
-    - build-3.9-linux
-  needs: [build-3.9-linux]
+    - build-3.11-linux
+  needs: [build-3.11-linux]
   script:
-    - virtualenv -p python3.9 .
+    - virtualenv -p python3.11 .
     - source bin/activate
     - pip install dist3/*.whl
     - cd tests
@@ -140,14 +140,14 @@ deploy-3.9-VS2017:
     paths:
       - release/*.whl
      
-deploy-3.9-linux:
+deploy-3.11-linux:
   stage:
     deploy
   tags:
     - Linux
   dependencies:
-    - build-3.9-linux
-  needs: [build-3.9-linux]
+    - build-3.11-linux
+  needs: [build-3.11-linux]
   script:
     - mkdir release
     - cp dist3/*.whl release
@@ -206,10 +206,10 @@ deploy-documentation:
   tags:
     - Linux
   dependencies:
-    - build-3.9-linux
-  needs: [build-3.9-linux]
+    - build-3.11-linux
+  needs: [build-3.11-linux]
   script:
-    - virtualenv -p python3.9 .
+    - virtualenv -p python3.11 .
     - source bin/activate
     - pip install dist3/*.whl
     - pip install sphinx sphinx_rtd_theme
-- 
GitLab