We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f4f1c4f + 3ace387 commit 6b1e5d3Copy full SHA for 6b1e5d3
examples/integrations/itk/SelectROI.ipynb
@@ -32,7 +32,7 @@
32
"# Install dependencies for this example\n",
33
"import sys\n",
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"
+ "!{sys.executable} -m pip install -q pooch tqdm \"itk-io>=5.3.0\" \"itk-filtering>=5.3.0\" \"itkwidgets[all]>=1.0a48\" rich"
36
]
37
},
38
{
itkwidgets/integrations/itk.py
@@ -4,7 +4,7 @@
4
import importlib_metadata
5
HAVE_ITK = False
6
try:
7
- itk_version = importlib_metadata.version('itk')
+ itk_version = importlib_metadata.version('itk-core')
8
if version.parse(itk_version) < version.parse('5.3.0'):
9
raise RuntimeError('itk 5.3 or newer is required. `pip install itk>=5.3.0`')
10
HAVE_ITK = True
0 commit comments