File tree Expand file tree Collapse file tree 4 files changed +20
-12
lines changed
Expand file tree Collapse file tree 4 files changed +20
-12
lines changed Original file line number Diff line number Diff line change 55 sam
66dependencies :
77 - cpuonly
8+ - napari
89 - pdoc
910 - pooch
11+ - pyqt
1012 - python-elf
1113 - pytorch
1214 - torchvision
Original file line number Diff line number Diff line change 11name : build_documentation
22
3- # build the documentation for a new commit
3+ # build the documentation for a new release
44on :
55 release:
66 types: created
77
8+ # # for debugging
9+ # on: [push, pull_request]
810
911# security: restrict permissions for CI jobs.
1012permissions :
1113 contents: read
1214
15+ # NOTE: importing of napari fails with CI and I am not quite sure why
16+ # I tried to adjust it based on the napari CI tests, but that didn't seem to help
17+
18+ # https://github.com/napari/napari/blob/main/.github/workflows/test_comprehensive.yml
1319jobs :
1420 # Build the documentation and upload the static HTML files as an artifact.
1521 build:
16- runs-on : ubuntu-latest
22+ runs-on : ubuntu-latest
23+ # runs-on: ${{ matrix.platform }}
24+ # strategy:
25+ # matrix:
26+ # platform: [ubuntu-latest]
27+ # python: ["3.10"]
28+ # backend: [pyqt5`]
29+
1730 steps:
1831 - name: Checkout
1932 uses: actions/checkout@v2
Original file line number Diff line number Diff line change 1+ from .__version__ import __version__
2+
13"""
24.. include:: ../doc/start_page.md
35.. include:: ../doc/installation.md
46.. include:: ../doc/annotation_tools.md
57.. include:: ../doc/python_library.md
68"""
7-
8- __all__ = [
9- "instance_segmentation" ,
10- "prompt_based_segmentation" ,
11- "prompt_generators" ,
12- "sample_data" ,
13- "util" ,
14- "visualization" ,
15- ]
Original file line number Diff line number Diff line change 1- __version__ = "0.1.1 "
1+ __version__ = "0.1.2 "
You can’t perform that action at this time.
0 commit comments