From 384a94ce4ee6d2082bbf4cfba74896959cc1969b Mon Sep 17 00:00:00 2001 From: Ali Nwegy Date: Fri, 1 Mar 2024 12:23:49 +0100 Subject: [PATCH] Fix: add to the build step --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e5d3fd0..95edcdf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,8 +25,8 @@ build-job: # This job runs in the build stage, which runs first. image: python:3.11-alpine3.19 script: - echo "Installing dependencies..." - - pip install setuptools - pip install -r requirements.txt + - pip install --upgrade build - echo "Compiling the code..." - python -m build - echo "Compile complete."