From 7656092fd3bb7f0ef65365b26c13a969b08766a7 Mon Sep 17 00:00:00 2001
From: Ernesto Rico Schmidt <ernesto@helsinki.at>
Date: Mon, 22 Apr 2024 16:27:05 -0400
Subject: [PATCH] ci: call pip correctly

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1b809a03..4370c1f6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -21,8 +21,8 @@ build-openapi-scheme:
     # we do this, because YAML anchors are not supported when executing locally
     - apt-get update
     - apt-get install -y gcc libldap2-dev libsasl2-dev libmagic-dev
-    - pip install --upgrade pip
-    - pip install poetry==1.8.1
+    - python3 -m pip install --upgrade pip
+    - python3 -m pip install poetry==1.8.1
     - poetry install --without dev,test --no-root
   script:
     - mkdir public
-- 
GitLab