From 91121d0655368c9125075a6d12f157c01dad1d33 Mon Sep 17 00:00:00 2001 From: Omiii-215 Date: Thu, 19 Feb 2026 00:22:02 +0530 Subject: [PATCH 1/2] Fix notebook compatibility issues for #802 - Add seaborn to docs extras in pyproject.toml (fixes ModuleNotFoundError in 12+ notebooks that import seaborn during docs build) - Add changelog entry docs/changes/802.doc.rst The set_xdata scalar fix is applied in the notebooks submodule (StingraySoftware/notebooks repo). --- docs/changes/802.doc.rst | 3 +++ pyproject.toml | 1 + 2 files changed, 4 insertions(+) create mode 100644 docs/changes/802.doc.rst diff --git a/docs/changes/802.doc.rst b/docs/changes/802.doc.rst new file mode 100644 index 000000000..baea2e709 --- /dev/null +++ b/docs/changes/802.doc.rst @@ -0,0 +1,3 @@ +Fixed notebook compatibility issues: added ``seaborn`` to docs build dependencies +and fixed ``set_xdata`` scalar-vs-array bug in the interactive phaseogram widget +in the Pulsar notebook. diff --git a/pyproject.toml b/pyproject.toml index ec8aa8e0c..20da7441a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -90,6 +90,7 @@ docs = [ "pandoc", "ipython", "towncrier<22.12.0", + "seaborn", ] [project.urls] From f2e59318b1a9e3a6f87233aaa8c2d36caf73b51c Mon Sep 17 00:00:00 2001 From: Omiii-215 Date: Thu, 19 Feb 2026 01:08:29 +0530 Subject: [PATCH 2/2] Rename changelog entry to match PR number (#964) --- docs/changes/{802.doc.rst => 964.doc.rst} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename docs/changes/{802.doc.rst => 964.doc.rst} (100%) diff --git a/docs/changes/802.doc.rst b/docs/changes/964.doc.rst similarity index 100% rename from docs/changes/802.doc.rst rename to docs/changes/964.doc.rst