From ff08ba0cfddd203d1e4ae15dae16caa5553c09a6 Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 25 Feb 2020 08:51:17 +0100 Subject: [PATCH] readthedocs: install with pip installs from conda-forge regularly fail on rtd with out of memory errors these days and we've no need for conda-only dependencies on rtd for this repo --- docs/requirements.txt | 3 +++ readthedocs.yml | 17 +++++++++++------ 2 files changed, 14 insertions(+), 6 deletions(-) create mode 100644 docs/requirements.txt diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 000000000..f2765a1fd --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1,3 @@ +sphinx>=1.3.6 +sphinx_rtd_theme +sphinxcontrib_github_alt diff --git a/readthedocs.yml b/readthedocs.yml index ca28c600c..772e915e2 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -1,7 +1,12 @@ -name: jupyter_client -type: sphinx -conda: - file: docs/environment.yml +version: 2 +name: jupyter-client +sphinx: + configuration: docs/conf.py python: - version: 3 - pip_install: true + version: 3.7 + install: + # install docs requirements + - requirements: docs/requirements.txt + # install jupyter-client itself + - method: pip + path: .