From 2d5c2070a573bf18c070db72b333d0e74f17108a Mon Sep 17 00:00:00 2001 From: Sam Witty Date: Thu, 7 Sep 2023 16:25:04 -0400 Subject: [PATCH 1/4] pin sphinx version to 7.1.2 fixes doc building locally --- docs/source/requirements.txt | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/source/requirements.txt b/docs/source/requirements.txt index 87bf4fef..0943e294 100644 --- a/docs/source/requirements.txt +++ b/docs/source/requirements.txt @@ -1,7 +1,7 @@ pyro-ppl>=1.8.5 jupyter mypy -sphinx +sphinx==7.1.2 sphinxcontrib-bibtex sphinx_rtd_theme myst_parser diff --git a/setup.py b/setup.py index 9e35a217..1d0d4633 100644 --- a/setup.py +++ b/setup.py @@ -50,11 +50,12 @@ "black", "flake8", "isort", - "sphinx", + "sphinx==7.1.2", "sphinxcontrib-bibtex", "sphinx_rtd_theme", "myst_parser", "nbsphinx", + "pypandoc-binary" ], }, python_requires=">=3.8", From add14bf5a176bcba8d2d334b554a9b7d6568d57c Mon Sep 17 00:00:00 2001 From: Sam Witty Date: Thu, 7 Sep 2023 16:35:49 -0400 Subject: [PATCH 2/4] remove pypandoc --- docs/source/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/requirements.txt b/docs/source/requirements.txt index 0943e294..c8055264 100644 --- a/docs/source/requirements.txt +++ b/docs/source/requirements.txt @@ -1,7 +1,7 @@ pyro-ppl>=1.8.5 jupyter mypy -sphinx==7.1.2 +sphinx==7.2.0 sphinxcontrib-bibtex sphinx_rtd_theme myst_parser From 4e6588e3ef66b0600948b6cb3a8b5790eabda577 Mon Sep 17 00:00:00 2001 From: Sam Witty Date: Thu, 7 Sep 2023 16:36:52 -0400 Subject: [PATCH 3/4] Update requirements.txt --- docs/source/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/requirements.txt b/docs/source/requirements.txt index c8055264..0943e294 100644 --- a/docs/source/requirements.txt +++ b/docs/source/requirements.txt @@ -1,7 +1,7 @@ pyro-ppl>=1.8.5 jupyter mypy -sphinx==7.2.0 +sphinx==7.1.2 sphinxcontrib-bibtex sphinx_rtd_theme myst_parser From 32773092c530563ded65344f15e01b89352a3042 Mon Sep 17 00:00:00 2001 From: Sam Witty Date: Thu, 7 Sep 2023 16:37:07 -0400 Subject: [PATCH 4/4] Update setup.py --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 1d0d4633..0af08ecb 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,6 @@ "sphinx_rtd_theme", "myst_parser", "nbsphinx", - "pypandoc-binary" ], }, python_requires=">=3.8",