diff --git a/setup.cfg b/setup.cfg
index beae1f72173271bd38d5893066e25519a0710998..acaf86953eb94d0ce55fc7bef3f3ecc4c69cbcde 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
 [metadata]
 name = epicure
-version = 0.2.5
+version = 0.2.6
 description = Napari plugin to manually correct epithelia segmentation in movies
 long_description = file: README.md
 long_description_content_type = text/markdown
diff --git a/src/epicure/start_epicuring.py b/src/epicure/start_epicuring.py
index e9d39c07700444afba61fba54037902b06575b9e..894b191a86533bd964fcd376a1ad2b417bd65af5 100644
--- a/src/epicure/start_epicuring.py
+++ b/src/epicure/start_epicuring.py
@@ -86,9 +86,7 @@ def start_epicure():
             ut.show_error("This option requires the plugin napari-epyseg that is missing.\nInstall it and restart")
         print("Running EpySeg with default parameters on the movie. To change the settings, use the napari-epyseg plugin outside of EpiCure or EpySeg module directly")
         parameters = {"tile_width":32, "tile_height":32, "model":"epyseg default(v2)"}
-        print(Epic.img.shape)
         segres = run_epyseg( Epic.img, parameters )
-        print(segres.shape)
         segname = str(get_files.image_file.value)+"_epyseg.tif"
         ut.writeTif( segres, segname, 1.0, "uint8", what="Epyseg results saved in " )
         get_files.segmentation_file.value = segname