From 8cdacab742d0749da45ba2b807f13c59f0bfd18f Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Thu, 19 Oct 2017 12:06:47 +0100 Subject: .gitlab-ci.yml: Fix documentation build Since commit fd91491a7619964e01d1fc8 we were passing an invalid combination of flags to `pip3 install`. Removing `--no-index` again since it doesn't really matter about downloading stuff during the docs build. Also removing `-e` which is a developer convenience ("editable mode" where a symlink to the source tree is installed rather than the actual files) that is not needed here. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5567ba8dd..1113368f2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -118,7 +118,7 @@ pages: - dnf install -y python2 - pip3 install sphinx - pip3 install sphinx-click - - pip3 install --user -e --no-index . + - pip3 install --user . - make -C doc - mv doc/build/html public artifacts: -- cgit v1.2.1