Skip to content

Commit 105f7c3

Browse files
authored
Merge pull request #773 from thewtex/examples-version
DOC: Update version in examples to 1.0a55
2 parents 5a31c83 + d2a9b27 commit 105f7c3

26 files changed

+34
-34
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ The [EnvironmentCheck.ipynb](https://github.com/InsightSoftwareConsortium/itkwid
2020
To install for all environments:
2121

2222
```bash
23-
pip install 'itkwidgets[all]>=1.0a49'
23+
pip install 'itkwidgets[all]>=1.0a55'
2424
```
2525

2626
### Jupyter Notebook
2727

2828
To install the widgets for the Jupyter Notebook with pip:
2929

3030
```bash
31-
pip install 'itkwidgets[notebook]>=1.0a49'
31+
pip install 'itkwidgets[notebook]>=1.0a55'
3232
```
3333

3434
Then look for the ImJoy icon at the top in the Jupyter Notebook:
@@ -40,7 +40,7 @@ Then look for the ImJoy icon at the top in the Jupyter Notebook:
4040
For Jupyter Lab 3 run:
4141

4242
```bash
43-
pip install 'itkwidgets[lab]>=1.0a49'
43+
pip install 'itkwidgets[lab]>=1.0a55'
4444
```
4545

4646
Then look for the ImJoy icon at the top in the Jupyter Notebook:
@@ -52,7 +52,7 @@ Then look for the ImJoy icon at the top in the Jupyter Notebook:
5252
For Google Colab run:
5353

5454
```bash
55-
pip install 'itkwidgets>=1.0a49'
55+
pip install 'itkwidgets>=1.0a55'
5656
```
5757

5858
## Example Notebooks

docs/deployments.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In the Pyodide notebook,
2323

2424
```python
2525
import piplite
26-
await piplite.install("itkwidgets==1.0a49")
26+
await piplite.install("itkwidgets==1.0a55")
2727
```
2828

2929
See also the [Sphinx / ReadTheDocs
@@ -72,7 +72,7 @@ also open them in Binder: [![Open in Binder](https://mybinder.org/badge_logo.svg
7272
To enable quick inspection of your 3D data in the browser or in your terminal you can install the command-line tool.
7373

7474
```bash
75-
pip install 'itkwidgets[cli]>=1.0a49'
75+
pip install 'itkwidgets[cli]>=1.0a55'
7676
playwright install --with-deps chromium
7777
```
7878
Previewing data in the terminal requires support for the iterm2 inline image protocol. Examples of terminals with this support include [wezterm](https://wezfurlong.org/wezterm/), [VSCode's Terminal](https://code.visualstudio.com/updates/v1_80#_image-support) (with VSCode >= v1.80), and [iTerm2](https://iterm2.com/index.html).

docs/jupyterlite/files/Hello3DWorld.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"outputs": [],
99
"source": [
1010
"import piplite\n",
11-
"await piplite.install('itkwidgets==1.0a49')"
11+
"await piplite.install('itkwidgets==1.0a55')"
1212
]
1313
},
1414
{

docs/quick_start_guide.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ The [EnvironmentCheck.ipynb](https://github.com/InsightSoftwareConsortium/itkwid
99
To install for all environments:
1010

1111
```bash
12-
pip install 'itkwidgets[all]>=1.0a49'
12+
pip install 'itkwidgets[all]>=1.0a55'
1313
```
1414

1515
### Jupyter Notebook
1616

1717
To install the widgets for the Jupyter Notebook with pip:
1818

1919
```bash
20-
pip install 'itkwidgets[notebook]>=1.0a49'
20+
pip install 'itkwidgets[notebook]>=1.0a55'
2121
```
2222

2323
Then look for the ImJoy icon at the top in the Jupyter Notebook:
@@ -29,7 +29,7 @@ Then look for the ImJoy icon at the top in the Jupyter Notebook:
2929
For Jupyter Lab 3 run:
3030

3131
```bash
32-
pip install 'itkwidgets[lab]>=1.0a49'
32+
pip install 'itkwidgets[lab]>=1.0a55'
3333
```
3434

3535
Then look for the ImJoy icon at the top in the Jupyter Notebook:
@@ -41,13 +41,13 @@ Then look for the ImJoy icon at the top in the Jupyter Notebook:
4141
For Google Colab run:
4242

4343
```bash
44-
pip install 'itkwidgets>=1.0a49'
44+
pip install 'itkwidgets>=1.0a55'
4545
```
4646

4747
### Command Line (CLI)
4848

4949
```bash
50-
pip install 'itkwidgets[cli]>=1.0a49'
50+
pip install 'itkwidgets[cli]>=1.0a55'
5151
playwright install --with-deps chromium
5252
```
5353

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies:
88
- pyimagej
99
- pip:
1010
- itk>=5.3.0
11-
- itkwidgets[all]>=1.0a49
11+
- itkwidgets[all]>=1.0a55
1212
- imjoy-elfinder
1313
- imjoy-jupyter-extension
1414
- imjoy-jupyterlab-extension

examples/EnvironmentCheck.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
"outputs": [],
107107
"source": [
108108
"reqs = [\n",
109-
" \"itkwidgets[all]>=1.0a49\",\n",
109+
" \"itkwidgets[all]>=1.0a55\",\n",
110110
" \"imjoy-elfinder\",\n",
111111
" \"imjoy-jupyter-extension\",\n",
112112
" \"imjoy-jupyterlab-extension\",\n",

examples/GettersAndSetters.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"source": [
1818
"import sys\n",
1919
"\n",
20-
"!{sys.executable} -m pip install -q imageio #\"itkwidgets[all]>=1.0a49\""
20+
"!{sys.executable} -m pip install -q imageio #\"itkwidgets[all]>=1.0a55\""
2121
]
2222
},
2323
{

examples/Hello3DWorld.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"source": [
2222
"import sys\n",
2323
"\n",
24-
"!{sys.executable} -m pip install -q imageio \"itkwidgets[all]>=1.0a49\""
24+
"!{sys.executable} -m pip install -q imageio \"itkwidgets[all]>=1.0a55\""
2525
]
2626
},
2727
{

examples/NumPyArrayPointSet.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"source": [
2222
"import sys\n",
2323
"\n",
24-
"!{sys.executable} -m pip install -q \"itkwidgets[all]>=1.0a49\""
24+
"!{sys.executable} -m pip install -q \"itkwidgets[all]>=1.0a55\""
2525
]
2626
},
2727
{

examples/integrations/MONAI/transform_visualization.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"# Install dependencies for this example\n",
2525
"import sys\n",
2626
"\n",
27-
"!{sys.executable} -m pip install -q \"monai[nibabel,itk,matplotlib,tqdm]\" \"itkwidgets[all]>=1.0a49\""
27+
"!{sys.executable} -m pip install -q \"monai[nibabel,itk,matplotlib,tqdm]\" \"itkwidgets[all]>=1.0a55\""
2828
]
2929
},
3030
{

examples/integrations/PyImageJ/ImageJImgLib2.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"import sys\n",
3232
"\n",
3333
"!conda install --yes --prefix {sys.prefix} -c conda-forge pyimagej\n",
34-
"!{sys.executable} -m pip install -q \"itkwidgets[all]>=1.0a49\""
34+
"!{sys.executable} -m pip install -q \"itkwidgets[all]>=1.0a55\""
3535
]
3636
},
3737
{

examples/integrations/PyVista/LiDAR.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"# Install dependencies for this example\n",
2323
"import sys\n",
2424
"\n",
25-
"!{sys.executable} -m pip install -q pyvista \"itkwidgets[all]>=1.0a49\""
25+
"!{sys.executable} -m pip install -q pyvista \"itkwidgets[all]>=1.0a55\""
2626
]
2727
},
2828
{

examples/integrations/PyVista/UniformGrid.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"# Install dependencies for this example\n",
2323
"import sys\n",
2424
"\n",
25-
"!{sys.executable} -m pip install -q pyvista \"itkwidgets[all]>=1.0a49\""
25+
"!{sys.executable} -m pip install -q pyvista \"itkwidgets[all]>=1.0a55\""
2626
]
2727
},
2828
{

examples/integrations/dask/DaskArray.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"# Install dependencies for this example\n",
2323
"import sys\n",
2424
"\n",
25-
"!{sys.executable} -m pip install -q 'dask[diagnostics]' toolz scikit-image pooch matplotlib \"itkwidgets[all]>=1.0a49\" \"itk-io>=5.3.0\""
25+
"!{sys.executable} -m pip install -q 'dask[diagnostics]' toolz scikit-image pooch matplotlib \"itkwidgets[all]>=1.0a55\" \"itk-io>=5.3.0\""
2626
]
2727
},
2828
{

examples/integrations/itk/3DImage.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"# Install dependencies for this example\n",
2424
"import sys\n",
2525
"\n",
26-
"!{sys.executable} -m pip install -q pooch tqdm \"itk-io>=5.3.0\" \"itkwidgets[all]>=1.0a49\""
26+
"!{sys.executable} -m pip install -q pooch tqdm \"itk-io>=5.3.0\" \"itkwidgets[all]>=1.0a55\""
2727
]
2828
},
2929
{

examples/integrations/itk/DICOM.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"# Install dependencies for this example\n",
2323
"import sys\n",
2424
"\n",
25-
"!{sys.executable} -m pip install -q --upgrade \"itk-io>=5.3.0\" tqdm pooch \"itkwidgets[all]>=1.0a49\""
25+
"!{sys.executable} -m pip install -q --upgrade \"itk-io>=5.3.0\" tqdm pooch \"itkwidgets[all]>=1.0a55\""
2626
]
2727
},
2828
{

examples/integrations/itk/IDC_Seg_Primer_Examples.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"source": [
3434
"import sys\n",
3535
"\n",
36-
"!{sys.executable} -m pip install -q pooch itk-io \"itkwidgets[all]>=1.0a49\" pydicom pydicom-seg numpy"
36+
"!{sys.executable} -m pip install -q pooch itk-io \"itkwidgets[all]>=1.0a55\" pydicom pydicom-seg numpy"
3737
]
3838
},
3939
{

examples/integrations/itk/MulticomponentNumPy.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"# Install dependencies for this example\n",
2222
"import sys\n",
2323
"\n",
24-
"!{sys.executable} -m pip install -q itk-core \"itkwidgets[all]>=1.0a49\""
24+
"!{sys.executable} -m pip install -q itk-core \"itkwidgets[all]>=1.0a55\""
2525
]
2626
},
2727
{

examples/integrations/itk/SelectROI.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"# Install dependencies for this example\n",
3333
"import sys\n",
3434
"\n",
35-
"!{sys.executable} -m pip install -q pooch tqdm \"itk-io>=5.3.0\" \"itk-filtering>=5.3.0\" \"itkwidgets[all]>=1.0a49\" rich"
35+
"!{sys.executable} -m pip install -q pooch tqdm \"itk-io>=5.3.0\" \"itk-filtering>=5.3.0\" \"itkwidgets[all]>=1.0a55\" rich"
3636
]
3737
},
3838
{

examples/integrations/itk/ThinPlateSpline.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"source": [
2222
"import sys, os\n",
2323
"\n",
24-
"!{sys.executable} -m pip install -q tqdm pooch \"itk>=5.3.0\" \"itkwidgets[all]>=1.0a49\""
24+
"!{sys.executable} -m pip install -q tqdm pooch \"itk>=5.3.0\" \"itkwidgets[all]>=1.0a55\""
2525
]
2626
},
2727
{

examples/integrations/itkwasm/3DImage.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"# Install dependencies for this example\n",
2424
"import sys\n",
2525
"\n",
26-
"!{sys.executable} -m pip install -q pooch tqdm rich \"itkwasm-image-io\" \"itkwidgets[all]>=1.0a49\""
26+
"!{sys.executable} -m pip install -q pooch tqdm rich \"itkwasm-image-io\" \"itkwidgets[all]>=1.0a55\""
2727
]
2828
},
2929
{

examples/integrations/itkwasm/SelectROI.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"# Install dependencies for this example\n",
2424
"import sys\n",
2525
"\n",
26-
"!{sys.executable} -m pip install -q pooch tqdm \"itkwidgets[all]>=1.0a49\" rich itkwasm-image-io"
26+
"!{sys.executable} -m pip install -q pooch tqdm \"itkwidgets[all]>=1.0a55\" rich itkwasm-image-io"
2727
]
2828
},
2929
{

examples/integrations/vtk/vtkImageData.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"# Install dependencies for this example\n",
2323
"import sys\n",
2424
"\n",
25-
"!{sys.executable} -m pip install -q vtk \"itkwidgets[all]>=1.0a49\""
25+
"!{sys.executable} -m pip install -q vtk \"itkwidgets[all]>=1.0a55\""
2626
]
2727
},
2828
{

examples/integrations/vtk/vtkPolyDataPointSet.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"# Install dependencies for this example\n",
2323
"import sys\n",
2424
"\n",
25-
"!{sys.executable} -m pip install -q vtk \"itkwidgets[all]>=1.0a49\""
25+
"!{sys.executable} -m pip install -q vtk \"itkwidgets[all]>=1.0a55\""
2626
]
2727
},
2828
{

examples/integrations/xarray/DataArray.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"source": [
2222
"import sys\n",
2323
"\n",
24-
"!{sys.executable} -m pip install -q netCDF4 xarray pooch \"itkwidgets[all]>=1.0a49\""
24+
"!{sys.executable} -m pip install -q netCDF4 xarray pooch \"itkwidgets[all]>=1.0a55\""
2525
]
2626
},
2727
{

examples/integrations/zarr/OME-NGFF-Brainstem-MRI.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"# Install dependencies for this example\n",
2323
"import sys\n",
2424
"\n",
25-
"!{sys.executable} -m pip install -q zarr \"fsspec[http]\" \"itkwidgets[all]>=1.0a49\""
25+
"!{sys.executable} -m pip install -q zarr \"fsspec[http]\" \"itkwidgets[all]>=1.0a55\""
2626
]
2727
},
2828
{

0 commit comments

Comments
 (0)