From 7e1629ffc6825f28aea779da8dc1f87117c36ecf Mon Sep 17 00:00:00 2001 From: Jonathan Guyer Date: Tue, 5 Dec 2023 11:03:45 -0500 Subject: [PATCH 1/2] Rename doc-building action OISM has no sense of humor --- .github/workflows/publish-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index d34a282..26f078c 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -6,7 +6,7 @@ jobs: docs: runs-on: ubuntu-latest steps: - - uses: usnistgov/NISTtheDocs2Death@0.4 + - uses: usnistgov/Docs4NIST@0.5 with: docs-folder: docs/ pages-branch: 'nist-pages' From 71dad81ee75f6dd64646e9b2a7df3e790796d901 Mon Sep 17 00:00:00 2001 From: Peter Beaucage Date: Fri, 8 Dec 2023 16:08:17 -0500 Subject: [PATCH 2/2] Try unpinning python in docs environment and removing pip-install hack --- docs/environment_docs.yml | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/docs/environment_docs.yml b/docs/environment_docs.yml index 9817db9..fe914b6 100644 --- a/docs/environment_docs.yml +++ b/docs/environment_docs.yml @@ -4,19 +4,16 @@ channels: - conda-forge - defaults dependencies: - - python==3.9 + - python - cyrsoxs - # Workaround since github actions workflow with only conda solver was timing out - - pip - - pip: - - sphinx - - pydata-sphinx-theme==0.13.3 - - sphinx-design - - xarray - - jupyterlab - - numpy - - scipy - - pandas - - matplotlib - - scikit-image - - h5py \ No newline at end of file + - sphinx + - pydata-sphinx-theme==0.13.3 + - sphinx-design + - xarray + - jupyterlab + - numpy + - scipy + - pandas + - matplotlib + - scikit-image + - h5py