From de5fc92d86804eb8df81499165bd799e9cf8dcc5 Mon Sep 17 00:00:00 2001
From: Stefan Hynek <stefan.hynek@uni-goettingen.de>
Date: Mon, 21 Feb 2022 10:56:25 +0100
Subject: [PATCH] ci(gitlab): remove '--user' from pip command to install to
 the system's default location

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4f4c5bc..0f92218 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -39,7 +39,7 @@ release:
   stage: release
   image: docker.io/python:3.8-slim-bullseye
   before_script:
-    - pip install --user --requirement requirements.ci.txt
+    - pip install --requirement requirements.ci.txt
   script:
     - semantic-release --verbosity=DEBUG publish
   rules:
-- 
GitLab