From a873880243647404de431a06802b98afae9797bf Mon Sep 17 00:00:00 2001 From: Tim Repke <repke@mcc-berlin.net> Date: Mon, 6 May 2024 13:49:55 +0200 Subject: [PATCH] update to python 3.12 --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c8da392..c0f8bce 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,7 +24,7 @@ stages: - test - deploy -image: python:3.11.7 +image: python:3.12 build-job: stage: build @@ -82,7 +82,7 @@ deploy-to-production: - git stash # "reset" softly by stashing (in case files changed) - git pull origin production # pull from origin (production branch) - echo "Creating new virtual environment" - - python3.11 -m venv venv + - python3.12 -m venv venv - source venv/bin/activate - which python - python -V -- GitLab