Skip to content

Commit e4273aa

Browse files
committed
Version bump : 0.1.0
1 parent 5ec83ee commit e4273aa

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

napari_cellseg3d/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
__version__ = "0.0.3rc1"
1+
"""napari-cellseg3d - napari plugin for cell segmentation."""
2+
__version__ = "0.1.0"

napari_cellseg3d/code_plugins/plugin_helper.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def __init__(self, viewer: "napari.viewer.Viewer"):
4343
self.logo_label.setToolTip("Open Github page")
4444

4545
self.info_label = ui.make_label(
46-
f"You are using napari-cellseg3d v.{'0.0.3rc1'}\n\n"
46+
f"You are using napari-cellseg3d v.{'0.1.0'}\n\n"
4747
f"Plugin for cell segmentation developed\n"
4848
f"by the Mathis Lab of Adaptive Motor Control\n\n"
4949
f"Code by :\nCyril Achard\nMaxime Vidal\nJessy Lauer\nMackenzie Mathis\n"
@@ -61,6 +61,7 @@ def __init__(self, viewer: "napari.viewer.Viewer"):
6161
self.build()
6262

6363
def build(self):
64+
"""Build the widget.""."""
6465
vbox = QVBoxLayout()
6566

6667
widgets = [
@@ -74,4 +75,5 @@ def build(self):
7475
self.setLayout(vbox)
7576

7677
def remove_from_viewer(self):
78+
"""Remove the widget from the viewer."""
7779
self._viewer.window.remove_dock_widget(self)

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = napari_cellseg3d
3-
version = 0.0.3rc1
3+
version = 0.1.0
44

55
[options]
66
packages = find:

0 commit comments

Comments
 (0)