From c3d240b4bf0dc861249769594b514ac733545cc8 Mon Sep 17 00:00:00 2001 From: Oliver Beckstein Date: Fri, 28 Aug 2020 20:43:55 -0700 Subject: [PATCH] update RTD build (#108) * update environment.yml with matplotlib and python 3.7 * Updated readthedocs config to v2 Co-authored-by: David Dotson --- environment.yml | 3 ++- readthedocs.yml | 17 ++++++++++++++--- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/environment.yml b/environment.yml index 09b6081b..704e1652 100644 --- a/environment.yml +++ b/environment.yml @@ -1,8 +1,9 @@ name: alchemlyb dependencies: -- python=3.5 +- python=3.7 - numpy - scipy - pandas - scikit-learn +- matplotlib - sphinx diff --git a/readthedocs.yml b/readthedocs.yml index f026f5d9..db0ddf1a 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -1,6 +1,17 @@ --- -conda: - file: environment.yml +version: 2 + +sphinx: + configuration: docs/conf.py + +formats: + - pdf python: - setup_py_install: true + version: 3.7 + install: + - method: pip + path: . + +conda: + environment: environment.yml