Skip to content

Commit

Permalink
temporary fix for #58 (#59)
Browse files Browse the repository at this point in the history
* temporary fix for #58, use jupyter-widgets==1.1.1, ipywidgets<8, update version to 0.3.2

* less strict jupyterlab-widgets version
  • Loading branch information
kushalkolar authored Sep 29, 2022
1 parent 6c4d509 commit c69bd9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jupyter_rfb/_version.py
Original file line number Diff line number Diff line change
@@ -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": ""}
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit c69bd9f

Please sign in to comment.