Skip to content

Commit

Permalink
fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolasibalic committed Dec 31, 2023
1 parent b18308a commit 93d85e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ifigures/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.2.2"
__version__ = "0.2.3"

from .interact import InteractiveFigure
from .widgets import RadioWidget, RangeWidget, RangeWidgetViridis, DropDownWidget
Expand Down
2 changes: 1 addition & 1 deletion ifigures/amoplots.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "BSD-3-Clause license"
Expand Down

0 comments on commit 93d85e3

Please sign in to comment.