From 13c03496c0842131ec179d5ac5c29789164af7c6 Mon Sep 17 00:00:00 2001 From: Jan Freyberg Date: Mon, 29 Aug 2022 18:36:58 +0100 Subject: [PATCH 1/2] Fix version dependencies of ipycanvas --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0360559..e8ecae5 100644 --- a/setup.py +++ b/setup.py @@ -95,7 +95,7 @@ python_requires=">=3.7", install_requires=[ "ipywidgets>=7.0.0", - "ipycanvas", + "ipycanvas>=0.13.1", "palettable", "Pillow", "numpy", @@ -133,7 +133,7 @@ # Any requirements for the examples to run ], "doc": [ - "sphinx>=2.3", + "sphinx>=4.0", "sphinx_rtd_theme", "matplotlib", "nbsphinx", From 6e90d77b9dfe18d9b5168ffffb935e6be38e12e4 Mon Sep 17 00:00:00 2001 From: Jan Freyberg Date: Mon, 29 Aug 2022 18:37:46 +0100 Subject: [PATCH 2/2] Set new version for python package --- ipyannotations/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipyannotations/_version.py b/ipyannotations/_version.py index ba1c970..ca480c1 100644 --- a/ipyannotations/_version.py +++ b/ipyannotations/_version.py @@ -4,5 +4,5 @@ # Copyright (c) Jan Freyberg. # Distributed under the terms of the Modified BSD License. -version_info = (0, 4, 2) +version_info = (0, 5, 1) __version__ = ".".join(map(str, version_info))