From b9ec2d6de89d449a24dc7bf14ad7156d14b6820b Mon Sep 17 00:00:00 2001
From: Anders Harrisson <anders.harrisson@ess.eu>
Date: Thu, 10 Oct 2024 16:04:53 +0200
Subject: [PATCH] Use python:3.11 in GitLab CI pipeline jobs

---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 894a676..96be851 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -12,7 +12,7 @@ default:
 
 build-package:
   stage: build
-  image: python:3
+  image: python:3.11
   before_script:
     - python -m pip install build --user
   script:
@@ -24,7 +24,7 @@ build-package:
 
 test:
   stage: test
-  image: python:3
+  image: python:3.11
   services:
     - name: redis
       variables:
@@ -46,7 +46,7 @@ test:
 
 release-package:
   stage: release
-  image: python:3
+  image: python:3.11
   before_script:
     - python -m pip install twine --user
   script:
-- 
GitLab