File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
examples/integrations/itk Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 32
32
"# Install dependencies for this example\n",
33
33
"import sys\n",
34
34
"\n",
35
- "!{sys.executable} -m pip install -q pooch tqdm \"itk-io>=5.3.0\" \"itk-filtering>=5.3.0\" \"itkwidgets[all]>=1.0a41 \" rich"
35
+ "!{sys.executable} -m pip install -q pooch tqdm \"itk-io>=5.3.0\" \"itk-filtering>=5.3.0\" \"itkwidgets[all]>=1.0a48 \" rich"
36
36
]
37
37
},
38
38
{
Original file line number Diff line number Diff line change 4
4
import importlib_metadata
5
5
HAVE_ITK = False
6
6
try :
7
- itk_version = importlib_metadata .version ('itk' )
7
+ itk_version = importlib_metadata .version ('itk-core ' )
8
8
if version .parse (itk_version ) < version .parse ('5.3.0' ):
9
9
raise RuntimeError ('itk 5.3 or newer is required. `pip install itk>=5.3.0`' )
10
10
HAVE_ITK = True
You can’t perform that action at this time.
0 commit comments