From 31c09eb28f53ad0dcb3b194a613edbb32e2e0565 Mon Sep 17 00:00:00 2001
From: Chetouane <elias.chetouane@univ-grenoble-alpes.fr>
Date: Tue, 16 Jan 2024 17:43:17 +0100
Subject: [PATCH] Ajout de l'installation de pip.

---
 .gitlab-ci.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 10c9455..913e1a7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,11 +3,11 @@ image: alpine:3.14
 build-dois-csv:
   before_script:
     - apk update
-    - apk add python3 git
+    - apk add python3 py3-pip git
   script:
-    - python3 -m "pip install pandas"
-    - python3 -m "pip install requests"
-    - python3 -m "pip install matplotlib"
+    - pip install pandas
+    - pip install requests
+    - pip install matplotlib
     - python3 run-all-codes.py
   after_script:
     - git config user.name "${GITLAB_USER_NAME}"
-- 
GitLab