From 00a795be661ad2e3ee5e13d5c82ae4a0b91e263f Mon Sep 17 00:00:00 2001
From: Frank Sauerburger <f.sauerburger@cern.ch>
Date: Tue, 25 Jun 2019 21:17:23 +0200
Subject: [PATCH] Install sphinx theme in CI

---
 .gitlab-ci.yml           | 2 +-
 doc/doc-requirements.txt | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)
 create mode 100644 doc/doc-requirements.txt

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index eef3b31..e890324 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -15,8 +15,8 @@ doc:
   image: python:3.7
   script:
     - pip install -r requirements.txt
-    - pip install sphinx
     - cd doc
+    - pip install -r doc-requirements.txt
     - sphinx-apidoc -o . ../nnfwtbn
     - make html
     - cp -a _build/html ../_public
diff --git a/doc/doc-requirements.txt b/doc/doc-requirements.txt
new file mode 100644
index 0000000..fedd390
--- /dev/null
+++ b/doc/doc-requirements.txt
@@ -0,0 +1,3 @@
+sphinx
+sphinx_rtd_theme
+
-- 
GitLab