1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
From: Dmitry Shachnev <mitya57@debian.org>
Date: Fri, 31 Jan 2025 22:37:08 +0300
Subject: Disable pydata and execution pages
They cause reproducibility failures.
Forwarded: not-needed
---
docs/examples/index.rst | 2 --
docs/index.md | 2 +-
docs/user_guide/theme-elements.md | 1 -
3 files changed, 1 insertion(+), 4 deletions(-)
diff --git a/docs/examples/index.rst b/docs/examples/index.rst
index 8c72803..da9cdfa 100644
--- a/docs/examples/index.rst
+++ b/docs/examples/index.rst
@@ -16,8 +16,6 @@ See the sections in the primary sidebar and below to explore.
:caption: Theme-specific styles
kitchen-sink/index
- pydata
- execution
graphviz
diff --git a/docs/index.md b/docs/index.md
index fa8d1ac..95b1412 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -23,7 +23,7 @@ A clean, Bootstrap-based Sphinx theme by and for [the PyData community](https://
- header: "{fas}`palette;pst-color-primary` Customizable UI and themes"
content: "Customize colors and branding with CSS variables, and build custom UIs with [Sphinx Design components](user_guide/web-components)."
- header: "{fab}`python;pst-color-primary` Supports PyData and Jupyter"
- content: "CSS and UI support for [Jupyter extensions](examples/execution) and [PyData execution outputs](examples/pydata.ipynb)."
+ content: "CSS and UI support for Jupyter extensions and PyData execution outputs."
- header: "{fas}`lightbulb;pst-color-primary` Example Gallery"
content: "See [our gallery](examples/gallery.md) of projects that use this theme."
```
diff --git a/docs/user_guide/theme-elements.md b/docs/user_guide/theme-elements.md
index 3e54a75..41c7006 100644
--- a/docs/user_guide/theme-elements.md
+++ b/docs/user_guide/theme-elements.md
@@ -157,7 +157,6 @@ In Python you can {python}`import sphinx`.
## Code execution
This theme has support for Jupyter execution libraries so that you can programmatically update your documentation with each build.
-For examples, see [](../examples/pydata.ipynb).
## Admonition sidebars
|