From 4fe4d7b365d2a3fd4a1c20aa509a4367463416e3 Mon Sep 17 00:00:00 2001 From: Rambaud Pierrick <12rambau@users.noreply.github.com> Date: Tue, 17 Oct 2023 12:44:15 -0700 Subject: [PATCH] deps: drop support for Sphinx 5 (#1516) * remove ref to myst-nb * update minimal supported version of sphinx --- tools/github_actions_install.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tools/github_actions_install.sh b/tools/github_actions_install.sh index 521e87b7f..be93503f8 100755 --- a/tools/github_actions_install.sh +++ b/tools/github_actions_install.sh @@ -8,12 +8,8 @@ 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" + SPHINX_INSTALL="sphinx==6.1.0" else # not used currently but easy enough SPHINX_INSTALL="sphinx==$SPHINX_VERSION" fi