From cf2d591afbb0f4b7d2b1820ae73826ff37ff3122 Mon Sep 17 00:00:00 2001
From: Bryan Brancotte <bryan.brancotte@pasteur.fr>
Date: Thu, 25 May 2023 09:59:36 +0200
Subject: [PATCH] rework doc dependencies, install jass dependencies

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6200194c..e7a21b95 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -72,7 +72,8 @@ pages:
   image: python:3.9
   stage: deploy
   script:
-  - pip install sphinx sphinx-argparse sphinxcontrib.bibtex sphinx_rtd_theme
+  - pip install -r requirements.txt
+  - pip install -r doc/requirements.txt
   - cd doc
   - make html
   - mv build/html/ ../public
diff --git a/doc/requirements.txt b/doc/requirements.txt
new file mode 100644
index 00000000..09861767
--- /dev/null
+++ b/doc/requirements.txt
@@ -0,0 +1,4 @@
+sphinx
+sphinx-argparse
+sphinxcontrib.bibtex
+sphinx_rtd_theme
-- 
GitLab