From 9dd5b3987013eefc114969deb6a310e0896f1afc Mon Sep 17 00:00:00 2001 From: C-Achard Date: Tue, 2 Apr 2024 10:38:21 +0200 Subject: [PATCH] v0.1.2 Fix manifest issue for PyPi --- README.md | 6 ++++-- napari_cellseg3d/__init__.py | 2 +- napari_cellseg3d/code_plugins/plugin_helper.py | 2 +- setup.cfg | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9fb6a03e..adce220a 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,11 @@ A napari plugin for 3D cell segmentation: training, inference, and data review. ## News -**New version : v0.1.1** +**New version : v0.1.2** -Added : +- Fixed manifest issue for PyPi + +Previous additions : - Improved training interface - Unsupervised model : WNet diff --git a/napari_cellseg3d/__init__.py b/napari_cellseg3d/__init__.py index 434ca0d5..9b7444d7 100644 --- a/napari_cellseg3d/__init__.py +++ b/napari_cellseg3d/__init__.py @@ -1,2 +1,2 @@ """napari-cellseg3d - napari plugin for cell segmentation.""" -__version__ = "0.1.1" +__version__ = "0.1.2" diff --git a/napari_cellseg3d/code_plugins/plugin_helper.py b/napari_cellseg3d/code_plugins/plugin_helper.py index 3e203912..710d6ded 100644 --- a/napari_cellseg3d/code_plugins/plugin_helper.py +++ b/napari_cellseg3d/code_plugins/plugin_helper.py @@ -43,7 +43,7 @@ def __init__(self, viewer: "napari.viewer.Viewer"): self.logo_label.setToolTip("Open Github page") self.info_label = ui.make_label( - f"You are using napari-cellseg3d v.{'0.1.1'}\n\n" + f"You are using napari-cellseg3d v.{'0.1.2'}\n\n" f"Plugin for cell segmentation developed\n" f"by the Mathis Lab of Adaptive Motor Control\n\n" f"Code by :\nCyril Achard\nMaxime Vidal\nJessy Lauer\nMackenzie Mathis\n" diff --git a/setup.cfg b/setup.cfg index ddd43e88..a7fe8b0e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = napari_cellseg3d -version = 0.1.1 +version = 0.1.2 [options] packages = find: