From 5a613e939102c726e52dd16b7cd940d1409438ed Mon Sep 17 00:00:00 2001 From: partev Date: Mon, 22 Feb 2021 09:35:35 -0500 Subject: [PATCH] DOC: fix a warning using obsolete package currently there is a warning: "/home/runner/miniconda3/envs/pandas-dev/lib/python3.8/site-packages/IPython/html.py:12: ShimWarning: The `IPython.html` package has been deprecated since IPython 4.0. You should import from `notebook` instead. `IPython.html.widgets` has moved to `ipywidgets`. warn("The `IPython.html` package has been deprecated since IPython 4.0. "" this change fixes the warning. --- doc/source/user_guide/style.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/user_guide/style.ipynb b/doc/source/user_guide/style.ipynb index 57cd67675893b..a67bac0c65462 100644 --- a/doc/source/user_guide/style.ipynb +++ b/doc/source/user_guide/style.ipynb @@ -1154,7 +1154,7 @@ "metadata": {}, "outputs": [], "source": [ - "from IPython.html import widgets\n", + "from ipywidgets import widgets\n", "@widgets.interact\n", "def f(h_neg=(0, 359, 1), h_pos=(0, 359), s=(0., 99.9), l=(0., 99.9)):\n", " return df.style.background_gradient(\n",