From 25ff94dbfa77db4aeaa8c2527843ade36ce5ed17 Mon Sep 17 00:00:00 2001 From: Robert Jordens Date: Thu, 26 Jan 2017 18:12:10 +0100 Subject: [PATCH] doc: use minimal conda environment to build --- .readthedocs.yml | 5 +++++ conda/artiq-doc.yml | 14 ++++++++++++++ doc/manual/requirements.txt | 4 ---- 3 files changed, 19 insertions(+), 4 deletions(-) create mode 100644 .readthedocs.yml create mode 100644 conda/artiq-doc.yml delete mode 100644 doc/manual/requirements.txt diff --git a/.readthedocs.yml b/.readthedocs.yml new file mode 100644 index 000000000..b7e160307 --- /dev/null +++ b/.readthedocs.yml @@ -0,0 +1,5 @@ +python: + version: 3 + pip_install: false +conda: + file: conda/artiq-doc.yml diff --git a/conda/artiq-doc.yml b/conda/artiq-doc.yml new file mode 100644 index 000000000..de03366e5 --- /dev/null +++ b/conda/artiq-doc.yml @@ -0,0 +1,14 @@ +# conda description for an environment to build artiq documentation +# $ conda env create -f conda/artiq-doc.yml +name: artiq-doc +channels: + - m-labs/label/dev + - m-labs/label/main + - defaults +dependencies: + - python 3.5.2 + - sphinx 1.4.8 + - sphinx-argparse + - sphinxcontrib-wavedrom + - sphinx_rtd_theme + - pythonparser 1.0 diff --git a/doc/manual/requirements.txt b/doc/manual/requirements.txt deleted file mode 100644 index ab1296345..000000000 --- a/doc/manual/requirements.txt +++ /dev/null @@ -1,4 +0,0 @@ -sphinx_rtd_theme -sphinx-argparse -sphinxcontrib-wavedrom -pythonparser