From 1577a1713f84a7effd62fce306588babfa5200ad Mon Sep 17 00:00:00 2001
From: Bas Nijholt <basnijholt@gmail.com>
Date: Thu, 18 Oct 2018 16:36:54 +0200
Subject: [PATCH] try installing the docs environment using pip to avoid build
 timeouts

Related:
* https://github.com/rtfd/readthedocs.org/issues/4778
* https://docs.readthedocs.io/en/latest/guides/build-using-too-many-resources.html
---
 docs/environment.yml | 29 +++++++++++++++--------------
 1 file changed, 15 insertions(+), 14 deletions(-)

diff --git a/docs/environment.yml b/docs/environment.yml
index ac890ec5..e28eb2e0 100644
--- a/docs/environment.yml
+++ b/docs/environment.yml
@@ -5,18 +5,19 @@ channels:
 
 dependencies:
   - python=3.6
-  - sortedcontainers
-  - scipy
-  - holoviews
-  - ipyparallel
-  - distributed
-  - ipykernel>=4.8*
-  - jupyter_client>=5.2.2
-  - ipywidgets
-  - scikit-optimize
-  - nbconvert>=5.4*  # because my jupyter-sphinx branch depends on it
   - pip:
-      - sphinx_rtd_theme
-      - git+https://github.com/basnijholt/jupyter-sphinx.git@widgets_execute
-      - git+https://github.com/python-adaptive/adaptive.git@master  # temporary solution because jupyter-sphinx doesn't use the adaptive from the repo
-      - sphinx_fontawesome
+    - sortedcontainers
+    - scipy
+    - holoviews
+    - bokeh
+    - ipyparallel
+    - distributed
+    - ipykernel>=4.8*
+    - jupyter_client>=5.2.2
+    - ipywidgets
+    - scikit-optimize
+    - nbconvert>=5.4*  # because my jupyter-sphinx branch depends on it
+    - sphinx_rtd_theme
+    - git+https://github.com/basnijholt/jupyter-sphinx.git@widgets_execute
+    - git+https://github.com/python-adaptive/adaptive.git@master  # temporary solution because jupyter-sphinx doesn't use the adaptive from the repo
+    - sphinx_fontawesome
-- 
GitLab