Skip to content

Commit 9dd5b39

Browse files
committed
v0.1.2
Fix manifest issue for PyPi
1 parent 89c38af commit 9dd5b39

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ A napari plugin for 3D cell segmentation: training, inference, and data review.
1717

1818
## News
1919

20-
**New version : v0.1.1**
20+
**New version : v0.1.2**
2121

22-
Added :
22+
- Fixed manifest issue for PyPi
23+
24+
Previous additions :
2325

2426
- Improved training interface
2527
- Unsupervised model : WNet

napari_cellseg3d/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""napari-cellseg3d - napari plugin for cell segmentation."""
2-
__version__ = "0.1.1"
2+
__version__ = "0.1.2"

napari_cellseg3d/code_plugins/plugin_helper.py

Lines changed: 1 addition & 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.1.1'}\n\n"
46+
f"You are using napari-cellseg3d v.{'0.1.2'}\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"

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.1.1
3+
version = 0.1.2
44

55
[options]
66
packages = find:

0 commit comments

Comments
 (0)