From 8660d880ab00d50d10faca6104b3193a375aa6a5 Mon Sep 17 00:00:00 2001
From: Daniel Sali <daniel.sali@alphacruncher.com>
Date: Fri, 13 Dec 2024 11:01:09 +0100
Subject: [PATCH] CI/CD pipeline to build on main commit and publish to PyPI on
 release 6

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4e17351..f4617e7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,12 +1,12 @@
 default:
-  image: python:3.11
+  image: python:3.11-bookworm
   cache:
     paths:
       - .pip-cache/
   before_script:
     - python3 --version
-    - python3 -m pip install --upgrade pip
-    - python3 -m pip install build twine
+    - pip3 install --upgrade pip
+    - pip3 install build twine
 
 stages:
   - build
-- 
GitLab