From 93d85e323c2ba46894047c1262edf9aa948ab02e Mon Sep 17 00:00:00 2001 From: Nikola Sibalic Date: Sun, 31 Dec 2023 19:54:17 +0100 Subject: [PATCH] fix regression --- ifigures/__init__.py | 2 +- ifigures/amoplots.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ifigures/__init__.py b/ifigures/__init__.py index fc4b98f..0a1b50c 100644 --- a/ifigures/__init__.py +++ b/ifigures/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.2.2" +__version__ = "0.2.3" from .interact import InteractiveFigure from .widgets import RadioWidget, RangeWidget, RangeWidgetViridis, DropDownWidget diff --git a/ifigures/amoplots.py b/ifigures/amoplots.py index 9c4dac3..98cd4ac 100644 --- a/ifigures/amoplots.py +++ b/ifigures/amoplots.py @@ -801,7 +801,7 @@ def plot (self, axis:plt.axis, rho, visualise="with dots"): referenceDots["x"].append(col) referenceDots["y"].append(row) - RGB=np.dstack((R, G, B)).transpose() + RGB=np.dstack((R, G, B)) axis.imshow(RGB) if (visualise == "with dots"): diff --git a/pyproject.toml b/pyproject.toml index 7b716e5..649e802 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "interactive-publishing" -version = "0.2.2" +version = "0.2.3" description = "Templates and tools for creating interactive figures and interactive text for publishing in EPUB3/HTML5." authors = ["Nikola Sibalic "] license = "BSD-3-Clause license"