diff --git a/doc/requirements-doc.txt b/doc/requirements-doc.txt index 676a1949b8069..4172bc287d96c 100644 --- a/doc/requirements-doc.txt +++ b/doc/requirements-doc.txt @@ -61,11 +61,10 @@ sphinx-book-theme==0.3.3 sphinx-external-toc==0.2.3 sphinxcontrib.yt==0.2.2 sphinx-sitemap==2.2.0 -sphinx-thebe==0.1.1 -autodoc_pydantic==1.6.1 sphinxcontrib-redoc==1.6.0 sphinx-tabs==3.4.0 sphinx-remove-toctrees==0.0.3 +autodoc_pydantic==1.6.1 # MyST myst-parser==0.15.2 diff --git a/doc/source/conf.py b/doc/source/conf.py index c1ebb63339788..d3a36145b7917 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -54,7 +54,6 @@ "sphinx.ext.coverage", "sphinx.ext.autosummary", "sphinx_external_toc", - "sphinx_thebe", "sphinxcontrib.autodoc_pydantic", "sphinxcontrib.redoc", "sphinx_tabs.tabs", @@ -104,12 +103,6 @@ "replacements", ] -# Thebe configuration for launching notebook cells within the docs. -thebe_config = { - "selector": "div.highlight", - "repository_url": "https://github.com/ray-project/ray", - "repository_branch": "master", -} # Cache notebook outputs in _build/.jupyter_cache # To prevent notebook execution, set this to "off". To force re-execution, set this to "force". @@ -266,11 +259,6 @@ "path_to_docs": "doc/source", "home_page_in_toc": False, "show_navbar_depth": 1, - "launch_buttons": { - "notebook_interface": "jupyterlab", - "binderhub_url": "https://mybinder.org", - "colab_url": "https://colab.research.google.com", - }, "announcement": "
", } diff --git a/doc/source/tune/examples/tune-sklearn.ipynb b/doc/source/tune/examples/tune-sklearn.ipynb index 7b4a6e5a38509..1df4935dd1a36 100644 --- a/doc/source/tune/examples/tune-sklearn.ipynb +++ b/doc/source/tune/examples/tune-sklearn.ipynb @@ -78,10 +78,6 @@ "``TuneGridSearchCV`` with a\n", "[SGDClassifier](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.SGDClassifier.html).\n", "\n", - "\n", - "```{thebe-button} Activate code examples\n", - "```\n", - "\n", "To start out, change the import the modules required for this example:" ] },