Skip to content

Commit

Permalink
chore: fix ipywidgets version >=8.0.0,<8.0.5
Browse files Browse the repository at this point in the history
This change is required by the release of ipywidgets at version 8.0.5.

  jupyter-widgets/ipywidgets#3533

One of the changes in this new version is the removal of the dependency
ipykernel, which we would require to add it as explicit dependency.

Due to potential breaking changes, we fix its maximum version below 8.0.5.
  • Loading branch information
marcofavorito committed Mar 27, 2023
1 parent 84903a1 commit afb5582
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ classifiers = [
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
GPy = {git = "https://github.com/SheffieldML/GPy.git", rev = "f63ed48"}
ipywidgets = "^8.0.4"
ipywidgets = ">=8.0.0,<8.0.5"
matplotlib = "^3.7.1"
numpy = ">=1.23.3,<1.24.0"
pandas = "^1.5.3"
Expand Down

0 comments on commit afb5582

Please sign in to comment.