From 6d18158a795960f1712fd2b7d8c405a07d057716 Mon Sep 17 00:00:00 2001
From: Joseph Weston <joseph.weston08@gmail.com>
Date: Wed, 30 Aug 2017 15:09:08 +0200
Subject: [PATCH] ci: remove sympy from CI config

sympy is installed in the Kwant testing image now.
---
 .gitlab-ci.yml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6972d55b..2da4842a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -57,7 +57,6 @@ check for dependencies installed:
 build documentation:
   stage: test
   script:
-    - pip3 install sympy
     - make -C doc realclean; make -C doc html SPHINXOPTS='-A website_deploy=True -n -W' REFNAME="${CI_COMMIT_TAG:-$CI_COMMIT_SHA}" SOURCE_URL="$CI_PROJECT_URL"/blob
   artifacts:
     paths:
@@ -68,7 +67,6 @@ build documentation:
 run tests:
   stage: test
   script:
-    - pip3 install sympy
     - py.test --cov=kwant --cov-report term --cov-report html --flakes kwant
   artifacts:
     paths:
@@ -78,7 +76,6 @@ run tests:
 check for broken links in doc:
   stage: test
   script:
-    - pip3 install sympy
     - make -C doc linkcheck
   allow_failure: true
 
-- 
GitLab