From 9ad6568008665ac456084bab1b8201bd7895e822 Mon Sep 17 00:00:00 2001 From: Julius Busecke Date: Wed, 5 Jan 2022 12:47:21 -0500 Subject: [PATCH 1/5] Attempt to speed up RTD with mamba --- readthedocs.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/readthedocs.yml b/readthedocs.yml index dddda1fc..db1fd80a 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -1,7 +1,9 @@ +version: 2 + +build: + os: "ubuntu-20.04" + tools: + python: "mambaforge-4.10" + conda: - file: doc/environment.yml -python: - version: 3.6 - install: - - method: setuptools - path: package + environment: environment.yml From 4b327de78373b8ab90e0e0d1b2b4282ab95f4158 Mon Sep 17 00:00:00 2001 From: Julius Busecke Date: Wed, 5 Jan 2022 12:48:17 -0500 Subject: [PATCH 2/5] Update readthedocs.yml --- readthedocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readthedocs.yml b/readthedocs.yml index db1fd80a..8d6ab064 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -6,4 +6,4 @@ build: python: "mambaforge-4.10" conda: - environment: environment.yml + environment: doc/environment.yml From f70397f570769c7755d65c42330de7cfdfc4103c Mon Sep 17 00:00:00 2001 From: Julius Busecke Date: Wed, 5 Jan 2022 12:54:37 -0500 Subject: [PATCH 3/5] Update readthedocs.yml --- readthedocs.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/readthedocs.yml b/readthedocs.yml index 8d6ab064..60fc0339 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -5,5 +5,10 @@ build: tools: python: "mambaforge-4.10" +python: + install: + - method: setuptools + path: package + conda: environment: doc/environment.yml From f7212f99310cf3515501686c78a014378b6f8700 Mon Sep 17 00:00:00 2001 From: Julius Busecke Date: Wed, 5 Jan 2022 13:03:35 -0500 Subject: [PATCH 4/5] Update readthedocs.yml --- readthedocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readthedocs.yml b/readthedocs.yml index 60fc0339..67dfbb7f 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -8,7 +8,7 @@ build: python: install: - method: setuptools - path: package + path: . conda: environment: doc/environment.yml From 8b63b2957bb224d17b669b1f61b1f83449088610 Mon Sep 17 00:00:00 2001 From: Julius Busecke Date: Wed, 5 Jan 2022 13:11:51 -0500 Subject: [PATCH 5/5] Update whats-new.rst --- doc/whats-new.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/whats-new.rst b/doc/whats-new.rst index dbfb387d..d115582d 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -16,6 +16,8 @@ Breaking Changes Documentation ~~~~~~~~~~~~~ +- Switch RTD build to use mamba for increased speed and reduced memory useage (:pull:`401`). + By `Julius Busecke `_. Internal Changes ~~~~~~~~~~~~~