From 06c8d7feca7d517f219f2bc14ea5402ed66232fa Mon Sep 17 00:00:00 2001
From: Daniel Sali <daniel.sali@alphacruncher.com>
Date: Fri, 13 Dec 2024 12:41:13 +0100
Subject: [PATCH] CI/CD pipeline to build on main commit and publish to PyPI on
 release 10

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 078ff7e..2c745ee 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,12 +1,12 @@
 default:
-  image: python:3.11-bookworm
+  image: python:3.11
   cache:
     paths:
       - .pip-cache/
   before_script:
     - python3 --version
-    - /usr/local/bin/pip3 install --upgrade pip
-    - /usr/local/bin/pip3 install build twine
+    - pip3 install --upgrade pip
+    - pip3 install build twine
 
 stages:
   - build
-- 
GitLab