diff --git a/jupyter_rfb/_version.py b/jupyter_rfb/_version.py index 4e6ed2f..3091530 100644 --- a/jupyter_rfb/_version.py +++ b/jupyter_rfb/_version.py @@ -1,5 +1,5 @@ # Module version -version_info = (0, 3, 1, "final", 0) +version_info = (0, 3, 2, "final", 0) # Module version stage suffix map _specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": ""} diff --git a/setup.py b/setup.py index e131cce..389bf47 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,8 @@ include_package_data=True, install_requires=[ "numpy", - "ipywidgets>=7.6.0", + "ipywidgets>=7.6.0,<8.0.0", + "jupyterlab-widgets<=1.1.1", ], python_requires=">=3.6", packages=find_packages(),