From bd640692228e392f369c1dff54c3fc0af08fc1fb Mon Sep 17 00:00:00 2001 From: Rambaud Pierrick <12rambau@users.noreply.github.com> Date: Tue, 17 Oct 2023 08:33:28 +0000 Subject: [PATCH 1/2] remove ref to myst-nb --- tools/github_actions_install.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/github_actions_install.sh b/tools/github_actions_install.sh index 521e87b7f..be6408295 100755 --- a/tools/github_actions_install.sh +++ b/tools/github_actions_install.sh @@ -8,10 +8,6 @@ if [[ "$SPHINX_VERSION" == "" ]]; then SPHINX_INSTALL="" elif [[ "$SPHINX_VERSION" == "dev" ]]; then SPHINX_INSTALL="git+https://github.com/sphinx-doc/sphinx" - if [[ "$1" == "doc" ]]; then - # Until they release a new version that undoes the max sphinx pin... - DEP_EXTRA="git+https://github.com/executablebooks/MyST-NB" - fi elif [[ "$SPHINX_VERSION" == "old" ]]; then SPHINX_INSTALL="sphinx==5.0" else # not used currently but easy enough From c1c40c44dc63d411b5ddd614f041ffc98c5b8643 Mon Sep 17 00:00:00 2001 From: Rambaud Pierrick <12rambau@users.noreply.github.com> Date: Tue, 17 Oct 2023 08:35:08 +0000 Subject: [PATCH 2/2] update minimal supported version of sphinx --- tools/github_actions_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/github_actions_install.sh b/tools/github_actions_install.sh index be6408295..be93503f8 100755 --- a/tools/github_actions_install.sh +++ b/tools/github_actions_install.sh @@ -9,7 +9,7 @@ if [[ "$SPHINX_VERSION" == "" ]]; then elif [[ "$SPHINX_VERSION" == "dev" ]]; then SPHINX_INSTALL="git+https://github.com/sphinx-doc/sphinx" elif [[ "$SPHINX_VERSION" == "old" ]]; then - SPHINX_INSTALL="sphinx==5.0" + SPHINX_INSTALL="sphinx==6.1.0" else # not used currently but easy enough SPHINX_INSTALL="sphinx==$SPHINX_VERSION" fi