From d2f29f86f49e26aadfede6257ed8bdcfbaaef4ab Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Thu, 29 Mar 2018 20:31:02 -0400 Subject: [PATCH] use conda for rtd --- docs/environment.yml | 9 +++++++++ readthedocs.yml | 6 ++++++ 2 files changed, 15 insertions(+) create mode 100644 docs/environment.yml create mode 100644 readthedocs.yml diff --git a/docs/environment.yml b/docs/environment.yml new file mode 100644 index 0000000..4e3aa00 --- /dev/null +++ b/docs/environment.yml @@ -0,0 +1,9 @@ +name: black_docs +channels: + - conda-forge +dependencies: +- python==3.6 +- Sphinx==1.7.2 +- pip: + - recommonmark==0.4.0 + - git+https://git@github.com/ambv/black.git \ No newline at end of file diff --git a/readthedocs.yml b/readthedocs.yml new file mode 100644 index 0000000..bd33c28 --- /dev/null +++ b/readthedocs.yml @@ -0,0 +1,6 @@ +name: jupyterhub +type: sphinx +conda: + file: docs/environment.yml +python: + version: 3 -- 2.39.5