From 54749cae09a68d5f10e9a48e2b521ef66e5a9dd8 Mon Sep 17 00:00:00 2001
From: Tamas Gal <tgal@km3net.de>
Date: Mon, 19 Oct 2020 20:15:12 +0200
Subject: [PATCH] More debuggable setup routine

---
 .gitlab-ci.yml | 3 +++
 Makefile       | 4 +---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6c9c9cb..3a956b2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -21,7 +21,10 @@ stages:
   python -V
   python3 -m venv venv
   source venv/bin/activate
+  pip install -U pip setuptools wheel
+  pip freeze
   make install-dev
+  pip freeze
 
 .junit_template: &junit_definition
     artifacts:
diff --git a/Makefile b/Makefile
index c49d762..258e1a1 100644
--- a/Makefile
+++ b/Makefile
@@ -8,9 +8,7 @@ install:
 	pip install .
 
 install-dev:
-	pip install -r requirements.txt
-	pip install -r requirements-dev.txt
-	pip install -e .
+	pip install -e ".[dev]"
 
 clean:
 	python setup.py clean --all
-- 
GitLab