From b943acb503acfd1ab12f1fd04975e6522f82a398 Mon Sep 17 00:00:00 2001 From: tcmetzger <39711796+tcmetzger@users.noreply.github.com> Date: Mon, 22 Apr 2024 20:08:38 -0700 Subject: [PATCH 1/5] temporarily use requirements.txt --- .readthedocs.yml | 9 ++++++--- docs/docs-requirements.txt | 17 +++++++++++++++++ 2 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 docs/docs-requirements.txt diff --git a/.readthedocs.yml b/.readthedocs.yml index d5743495..e281da8a 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -19,8 +19,11 @@ sphinx: # to build your documentation # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html python: - install: + install: + - requirements: docs/docs-requirements.txt - method: pip path: . - extra_requirements: - - [docs, tests] + # - method: pip + # path: . + # extra_requirements: + # - [docs, tests] diff --git a/docs/docs-requirements.txt b/docs/docs-requirements.txt new file mode 100644 index 00000000..a8fde6b1 --- /dev/null +++ b/docs/docs-requirements.txt @@ -0,0 +1,17 @@ +dask[dataframe] +geopandas +Jinja2 >=2.11 +ipykernel +matplotlib +nbsphinx +numpydoc +pandoc +pydata_sphinx_theme +sphinx +sphinx-panels +sphinx_rtd_theme +flake8 +isort +noise >= 1.2.2 +pytest +pytest-cov From 408d1ab9401139a66b5f26865902ac2850e7e1ad Mon Sep 17 00:00:00 2001 From: tcmetzger <39711796+tcmetzger@users.noreply.github.com> Date: Tue, 23 Apr 2024 08:24:32 -0700 Subject: [PATCH 2/5] update requirements --- .readthedocs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 4d8ff33b..af1f002e 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -23,5 +23,5 @@ python: - requirements: docs/docs-requirements.txt - method: pip path: . - extra_requirements: - - [doc, tests] \ No newline at end of file + # extra_requirements: + # - [doc, tests] From 39608932ddaa2e8b56bbe3a2d4698a69b687fafd Mon Sep 17 00:00:00 2001 From: tcmetzger <39711796+tcmetzger@users.noreply.github.com> Date: Tue, 23 Apr 2024 08:27:41 -0700 Subject: [PATCH 3/5] update conf.py --- docs/source/conf.py | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index d7f91476..3ea3a164 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -44,7 +44,6 @@ 'sphinx.ext.napoleon', 'sphinx.ext.viewcode', 'sphinx.ext.autosummary', - 'sphinx_multiversion', 'nbsphinx', 'sphinx.ext.mathjax', 'matplotlib.sphinxext.plot_directive', From f8642fd15da28d60b805397a276bd1e247a954ca Mon Sep 17 00:00:00 2001 From: tcmetzger <39711796+tcmetzger@users.noreply.github.com> Date: Tue, 23 Apr 2024 08:34:27 -0700 Subject: [PATCH 4/5] Test different approach for dependency install --- .readthedocs.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index af1f002e..03c2ae76 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -10,6 +10,9 @@ build: os: ubuntu-22.04 tools: python: "3.12" + jobs: + pre_build: + - pip install .[doc,tests] # Build documentation in the "docs/" directory with Sphinx sphinx: @@ -20,7 +23,7 @@ sphinx: # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html python: install: - - requirements: docs/docs-requirements.txt +# - requirements: docs/docs-requirements.txt - method: pip path: . # extra_requirements: From 0146ec4b628da6682479670b86dac7a474d54340 Mon Sep 17 00:00:00 2001 From: tcmetzger <39711796+tcmetzger@users.noreply.github.com> Date: Tue, 23 Apr 2024 08:38:38 -0700 Subject: [PATCH 5/5] next attempt --- .readthedocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 03c2ae76..e677d36d 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -12,7 +12,7 @@ build: python: "3.12" jobs: pre_build: - - pip install .[doc,tests] + - pip install '.[doc,tests]' # Build documentation in the "docs/" directory with Sphinx sphinx: