From 3e97c41f1b48bfdd6f86612daca8878664c2dd5e Mon Sep 17 00:00:00 2001 From: Daniel Sali <daniel.sali@alphacruncher.com> Date: Wed, 18 Dec 2024 15:04:59 +0100 Subject: [PATCH] In GitLab CI/CD pipeline, assume pip3 is installed --- .gitlab-ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4a56be1..d0cf62c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,9 +6,8 @@ default: before_script: - python3 --version - curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py - - python3 get-pip.py --user - - pip install --upgrade pip - - pip install build twine + - pip3 install --upgrade pip + - pip3 install build twine stages: - build -- GitLab