File tree Expand file tree Collapse file tree 6 files changed +7
-8
lines changed Expand file tree Collapse file tree 6 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 3030 python3 -m pip install -e ".[test,all]"
3131 python3 -m pip install pyimagej
3232 python3 -c "import imagej; ij = imagej.init('2.5.0'); print(ij.getVersion())"
33- python3 -m pip install --upgrade --pre itk
33+ python3 -m pip install " itk>=5.3.0"
3434
3535 - name : Test notebooks
3636 run : |
Original file line number Diff line number Diff line change 3636Install ITK:
3737
3838``` bash
39- pip install --pre itk-io
39+ pip install itk-io
4040```
4141
4242You can use ITK to read in and filter your data before displaying and interacting with it with the Viewer.
Original file line number Diff line number Diff line change 2222 "# Install dependencies for this example\n",
2323 "import sys\n",
2424 "\n",
25- "!{sys.executable} -m pip install -q --upgrade --pre itk-io\n",
26- "!{sys.executable} -m pip install -q 'dask[diagnostics]' toolz scikit-image pooch matplotlib \"itkwidgets[all]>=1.0a16\""
25+ "!{sys.executable} -m pip install -q 'dask[diagnostics]' toolz scikit-image pooch matplotlib \"itkwidgets[all]>=1.0a16\" \"itk-io>=5.3.0\""
2726 ]
2827 },
2928 {
Original file line number Diff line number Diff line change 2121 "# Install dependencies for this example\n",
2222 "import sys\n",
2323 "\n",
24- "!{sys.executable} -m pip install -q pooch tqdm itk-io \"itkwidgets[all]>=1.0a16\""
24+ "!{sys.executable} -m pip install -q \" itk-io>=5.3.0\" \"itkwidgets[all]>=1.0a16\""
2525 ]
2626 },
2727 {
Original file line number Diff line number Diff line change 2222 "# Install dependencies for this example\n",
2323 "import sys\n",
2424 "\n",
25- "!{sys.executable} -m pip install -q --upgrade --pre itk-io tqdm pooch \"itkwidgets[all]>=1.0a17\""
25+ "!{sys.executable} -m pip install -q --upgrade \" itk-io>=5.3.0\" tqdm pooch \"itkwidgets[all]>=1.0a17\""
2626 ]
2727 },
2828 {
Original file line number Diff line number Diff line change 55try :
66 import itk
77 if not hasattr (itk , '__version__' ) or version .parse (itk .__version__ ) < version .parse ('5.3.0' ):
8- raise RuntimeError ('itk 5.3rc4 or newer is required. `pip install --upgrade --pre itk`' )
8+ raise RuntimeError ('itk 5.3 or newer is required. `pip install itk>=5.3.0 `' )
99 HAVE_ITK = True
1010except ImportError :
1111 pass
@@ -19,4 +19,4 @@ def itk_group_spatial_object_to_wasm_point_set(point_set):
1919
2020else :
2121 def itk_group_spatial_object_to_wasm_point_set (point_set ):
22- raise RuntimeError ('itk 5.3rc4 or newer is required. `pip install --upgrade --pre itk`' )
22+ raise RuntimeError ('itk 5.3 or newer is required. `pip install itk>=5.3.0 `' )
You can’t perform that action at this time.
0 commit comments