Refresh tutorial notebook outputs against DataJoint 2.2.2#171
Merged
dimitri-yatsenko merged 1 commit intoMay 19, 2026
Merged
Conversation
All 23 tutorial and how-to notebooks have been re-executed against the current released DataJoint version (2.2.2). The committed cell outputs were stale: 21 notebooks still showed "DataJoint 2.1.1 connected" in their connection banner, and blob-detection additionally rendered a spurious TqdmWarning and a scikit-image dataset download line. Built on top of #170 (which added ipywidgets to the executor image and pre-cached the scikit-image datasets), so the regenerated outputs are free of the previous noise: - No "TqdmWarning: IProgress not found" stderr blocks. - No "Downloading file 'data/mitosis.tif' from gitlab.com ..." stdout. - All connection banners read "DataJoint 2.2.2 connected to ...". scripts/check_notebook_versions.py now exits 0.
MilagrosMarin
approved these changes
May 19, 2026
a1a2ca0
into
docs/notebook-output-hygiene
1 check passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Refreshes the committed cell outputs of all 23 tutorial / how-to notebooks by re-executing them against DataJoint 2.2.2 with the new executor image from #170.
DataJoint 2.1.1 connectedin their connection banner; all now readDataJoint 2.2.2 connected.blob-detection.ipynbno longer renders theTqdmWarning: IProgress not foundblock or the scikit-imageDownloading file 'data/mitosis.tif' from gitlab.com ...line.Stacked on #170 — the cleanliness of these outputs depends on the
ipywidgetsdependency + scikit-image pre-cache added there. Merge #170 first; this PR will then retargetmainautomatically.Test plan
git diff --stat docs/notebook-output-hygiene..shows only*.ipynbfiles undersrc/tutorials/andsrc/how-to/— no source-code changes.python scripts/check_notebook_versions.pyexits 0.grep -rln 'TqdmWarning\|IProgress not found' src/→ empty.grep -rln 'Downloading file.*scikit-image' src/→ empty.MODE=LIVE docker compose upand visit/tutorials/examples/blob-detection/. Cell 6 has no yellow warning, cell 2 banner reads 2.2.2, cell 16 progress bar is a single widget instead of six text snapshots.tutorials/basics/01-first-pipeline/,tutorials/advanced/json-type/) and confirm the only meaningful diff is the version banner.