From c3e7539e6bc3fd58df09f7f32b0678b0aff7229d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20Gr=C3=BCter?= Date: Sat, 24 Aug 2024 09:24:18 +0200 Subject: [PATCH] Pin ipywidget dependencies The recent release of 8.1.5 on Aug 22, 2024 apparently broke the whole interactice thing again, it requested widgetsnbextension~=4.0.12 for which in can't find a "nonbinary" wheel. *shrug* --- tutorial/02_image_filtering.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/02_image_filtering.md b/tutorial/02_image_filtering.md index 29653fa..977be07 100644 --- a/tutorial/02_image_filtering.md +++ b/tutorial/02_image_filtering.md @@ -13,7 +13,7 @@ jupyter: --- ```python tags=["hide-cell"] -%pip install -q ipywidgets ipympl +%pip install -q widgetsnbextension==4.0.11 ipywidgets==8.1.3 ipympl==0.9.4 %matplotlib widget %config InlineBackend.figure_format = 'retina' ```