Skip to content

Commit 84486d9

Browse files
committed
fetch upstream
2 parents 65905cf + f8d6c58 commit 84486d9

File tree

6 files changed

+33
-33
lines changed

6 files changed

+33
-33
lines changed

.github/workflows/build_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
# Standard drop-in approach that should work for most people.
1616
- uses: ammaraskar/sphinx-action@master
1717
with:
18-
pre-build-command: "pip install -r requirements.txt"
18+
pre-build-command: "pip install -r requirements.txt napari-cellseg3d"
1919
docs-folder: "docs/"
2020

2121
- name: GitHub Pages action
Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
#name: napari hub Preview Page # we use this name to find your preview page artifact, so don't change it!
2-
## For more info on this action, see https://github.com/chanzuckerberg/napari-hub-preview-action/blob/main/action.yml
3-
#
4-
#on:
5-
# pull_request:
6-
# branches:
7-
# - '**'
8-
#
9-
#jobs:
10-
# preview-page:
11-
# name: Preview Page Deploy
12-
# runs-on: ubuntu-latest
13-
#
14-
# steps:
15-
# - name: Checkout repo
16-
# uses: actions/checkout@v2
17-
#
18-
# - name: napari hub Preview Page Builder
19-
# uses: chanzuckerberg/[email protected]
20-
# with:
21-
# hub-ref: main
1+
name: napari hub Preview Page # we use this name to find your preview page artifact, so don't change it!
2+
# For more info on this action, see https://github.com/chanzuckerberg/napari-hub-preview-action/blob/main/action.yml
3+
4+
on:
5+
pull_request:
6+
branches:
7+
- '**'
8+
9+
jobs:
10+
preview-page:
11+
name: Preview Page Deploy
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout repo
16+
uses: actions/checkout@v2
17+
18+
- name: napari hub Preview Page Builder
19+
uses: chanzuckerberg/[email protected]
20+
with:
21+
hub-ref: main

README.md

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

1818
## News
1919

20-
**June 2022: This is an alpha version, please expect bugs and issues, and help us make the code better by reporting them as an issue!**
20+
**June 2022: This is an alpha version, please expect bugs and issues, and help us make the code better by reporting them as an issue!**
2121

2222

2323

2424
## Installation
2525

26-
You can install `napari-cellseg3d` via [pip] (pypi-test placeholder):
26+
You can install `napari-cellseg3d` via [pip]:
2727

28-
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ napari-cellseg3d==0.0.3
28+
pip install napari-cellseg3d
2929

3030
## Documentation
3131

@@ -44,7 +44,7 @@ Then go into Plugins > napari-cellseg3d, and choose which tool to use.
4444
- **Review**: This module allows you to review your labels, from predictions or manual labeling, and correct them if needed. It then saves the status of each file in a csv, for easier monitoring.
4545
- **Inference**: This module allows you to use pre-trained segmentation algorithms on volumes to automatically label cells and compute statistics.
4646
- **Train**: This module allows you to train segmentation algorithms from labeled volumes.
47-
- **Utilities**: This module allows you to perform several actions like cropping your volumes and labels dynamically, by selecting a fixed size volume and moving it around the image; computing prediction scores from ground truth and predicition labels; or converting labels from instance to segmentation and the opposite.
47+
- **Utilities**: This module allows you to perform several actions like cropping your volumes and labels dynamically, by selecting a fixed size volume and moving it around the image; computing prediction scores from ground truth and predicition labels; or converting labels from instance to segmentation and the opposite.
4848

4949

5050
## Requirements
@@ -61,17 +61,17 @@ If you get errors from MONAI regarding missing readers, please see [MONAI's opti
6161
If you encounter any problems, please [file an issue] along with a detailed description.
6262

6363

64-
## Testing
64+
## Testing
6565

66-
To run tests locally:
66+
To run tests locally:
6767

6868
- Locally : run ``pytest`` in the plugin folder
6969
- Locally with coverage : In the plugin folder, run ``coverage run --source=src -m pytest`` then ``coverage.xml`` to generate a .xml coverage file.
7070
- With tox : run ``tox`` in the plugin folder (will simulate tests with several python and OS configs, requires substantial storage space)
7171

7272
## Contributing
7373

74-
Contributions are very welcome.
74+
Contributions are very welcome.
7575

7676
Please ensure the coverage at least stays the same before you submit a pull request.
7777

@@ -108,7 +108,7 @@ Distributed under the terms of the [MIT] license.
108108
[PyTorch's website for installation instructions]: https://pytorch.org/get-started/locally/
109109
[MONAI's optional dependencies]: https://docs.monai.io/en/stable/installation.html#installing-the-recommended-dependencies
110110

111-
## Acknowledgements
111+
## Acknowledgements
112112

113113
This plugin was developed by Cyril Achard, Maxime Vidal, Mackenzie Mathis. This work was funded, in part, from the Wyss Center to the [Mathis Laboratory of Adaptive Motor Control](https://www.mackenziemathislab.org/).
114114

napari_cellseg3d/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.3"
1+
__version__ = "0.0.1rc1"

napari_cellseg3d/plugin_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __init__(self, viewer: "napari.viewer.Viewer"):
4141
self.logo_label.setToolTip("Open Github page")
4242

4343
self.info_label = ui.make_label(
44-
f"You are using napari-cellseg3d v.{'0.0.3'}\n\n"
44+
f"You are using napari-cellseg3d v.{'0.0.1rc1'}\n\n"
4545
f"Plugin for cell segmentation developed\n"
4646
f"by the Mathis Lab of Adaptive Motor Control\n\n"
4747
f"Code by Cyril Achard and Maxime Vidal and Mackenzie 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.0.3
3+
version = 0.0.1rc1
44
author = Cyril Achard, Maxime Vidal, Mackenzie Mathis
55
66

0 commit comments

Comments
 (0)