From 371daf97c59de0ec8b44a43c233a874826a2b174 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Al=C3=A1n=20Mu=C3=B1oz?= <amuoz@ed.ac.uk>
Date: Mon, 27 Jun 2022 15:00:03 +0100
Subject: [PATCH] fix imageViewer y-spacing and unbump agora

---
 aliby/utils/imageViewer.py | 4 ++--
 pyproject.toml             | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/aliby/utils/imageViewer.py b/aliby/utils/imageViewer.py
index 6a60ad18..c76ae14d 100644
--- a/aliby/utils/imageViewer.py
+++ b/aliby/utils/imageViewer.py
@@ -312,8 +312,8 @@ class remoteImageViewer:
         )
         plt.yticks(
             ticks=[
-                self.tiler.tile_size * (i + 0.5)
-                + (i * self.tiler.tile_size * nrows)
+                (i * self.tiler.tile_size * nrows)
+                + self.tiler.tile_size * nrows / 2
                 for i in range(len(channels))
             ],
             labels=channel_labels,
diff --git a/pyproject.toml b/pyproject.toml
index 7bcbff7c..9e26e2a3 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -24,7 +24,7 @@ requests-toolbelt = "^0.9.1"
 h5py = "2.10" # I/O into files
 imageio = "2.8.0"
 omero-py = ">=5.6.2" # contact omero server
-aliby-agora = "^0.2.30"
+aliby-agora = "^0.2.29"
 aliby-baby = "^0.1.10"
 aliby-post = "^0.1.27"
 p-tqdm = "^1.3.3" # Parallel progress bars
-- 
GitLab