From 5073f1156c7e0321451f443545c22e20926c51a0 Mon Sep 17 00:00:00 2001 From: "William F. Broderick" Date: Thu, 10 Aug 2023 16:38:21 -0400 Subject: [PATCH 1/4] remove system_packages from readthedocs they're dropping that support --- .readthedocs.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 4409574..d2f81d1 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -23,4 +23,3 @@ python: install: - method: pip path: . - system_packages: true From bd7e6a3eaddf68241bae1a6c5f3dc8d965a670d9 Mon Sep 17 00:00:00 2001 From: "William F. Broderick" Date: Thu, 10 Aug 2023 16:38:55 -0400 Subject: [PATCH 2/4] remove Pillow from setup.py? don't think we use it anymore --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index b1e5b71..a89bf70 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,6 @@ install_requires=['numpy>=1.1', 'scipy>=0.18', 'matplotlib>=1.5', - 'Pillow>=3.4', 'tqdm>=4.29', 'requests>=2.21'], ext_modules=[Extension('pyrtools.pyramids.c.wrapConv', From 2eb5e55af8bbc344e14bf529c0d657d578a3ea12 Mon Sep 17 00:00:00 2001 From: "William F. Broderick" Date: Thu, 10 Aug 2023 16:51:29 -0400 Subject: [PATCH 3/4] updates required sphinx rtd theme for sphinx 7 incompatibility issue --- docs/environment.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/environment.yml b/docs/environment.yml index a7ee197..d0f60af 100644 --- a/docs/environment.yml +++ b/docs/environment.yml @@ -5,7 +5,8 @@ channels: dependencies: - sphinx - - sphinx_rtd_theme + # fix sphinx 7 incompatibility issue + - 'sphinx_rtd_theme>=1.3.0rc1' - numpydoc - numpy - python From 9402d124cc8ab62b695dc8f246cb7591c685cd53 Mon Sep 17 00:00:00 2001 From: "William F. Broderick" Date: Thu, 10 Aug 2023 17:02:48 -0400 Subject: [PATCH 4/4] moves rtd theme to pip --- docs/environment.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/environment.yml b/docs/environment.yml index d0f60af..85d6208 100644 --- a/docs/environment.yml +++ b/docs/environment.yml @@ -5,8 +5,6 @@ channels: dependencies: - sphinx - # fix sphinx 7 incompatibility issue - - 'sphinx_rtd_theme>=1.3.0rc1' - numpydoc - numpy - python @@ -16,3 +14,5 @@ dependencies: - nbsphinx - nbsphinx_link - sphinxcontrib-apidoc + # fix sphinx 7 incompatibility issue + - 'sphinx_rtd_theme>=1.3.0rc1'