From afb558271580c5763f6881f6b5e764235b4a8550 Mon Sep 17 00:00:00 2001 From: Marco Favorito Date: Mon, 27 Mar 2023 23:02:58 +0200 Subject: [PATCH] chore: fix ipywidgets version >=8.0.0,<8.0.5 This change is required by the release of ipywidgets at version 8.0.5. https://github.com/jupyter-widgets/ipywidgets/pull/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. --- poetry.lock | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/poetry.lock b/poetry.lock index 3c723d1b..f78842c8 100644 --- a/poetry.lock +++ b/poetry.lock @@ -5412,4 +5412,4 @@ testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more [metadata] lock-version = "2.0" python-versions = ">=3.8,<3.11" -content-hash = "f93afe542963751c007963960fdda77db21bedca2c49ee5c7ff22054f679f186" +content-hash = "a3f8c801c37799de3ce00598215df22bcec7a72826d19db046528f09b989f5b2" diff --git a/pyproject.toml b/pyproject.toml index e8a32d80..d0bfdcaa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"