From cbd3f0668a35d24c06b95b0f50deab27b2f0a881 Mon Sep 17 00:00:00 2001 From: Chetouane <elias.chetouane@univ-grenoble-alpes.fr> Date: Tue, 16 Jan 2024 17:31:16 +0100 Subject: [PATCH] Changement de syntaxe pour utiliser python. --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1d93897..10c9455 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,10 +5,10 @@ build-dois-csv: - apk update - apk add python3 git script: - - pip install pandas - - pip install requests - - pip install matplotlib - - python run-all-codes.py + - python3 -m "pip install pandas" + - python3 -m "pip install requests" + - python3 -m "pip install matplotlib" + - python3 run-all-codes.py after_script: - git config user.name "${GITLAB_USER_NAME}" - git config user.email "${GITLAB_USER_EMAIL}" -- GitLab