From d2d79644d530d8aa8f21cd8eb74dbb506a82f2b8 Mon Sep 17 00:00:00 2001
From: Christoph Harmel <christoph.harmel@unibas.ch>
Date: Fri, 9 Dec 2022 13:41:48 +0100
Subject: [PATCH] fix: build stage in CI

---
 .gitlab-ci.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 11fd96b..e1a5ed1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,7 +11,8 @@ stages:          # List of stages for jobs, and their order of execution
 build-job:       # This job runs in the build stage, which runs first.
   stage: build
   script:
-    - pip install requirements.txt requirements-dev.txt
+    - pip install -r requirements.txt
+    - pip install -r requirements-dev.txt
     - pip install -e .
 
 unit-test-job:   # This job runs in the test stage.
-- 
GitLab