Skip to content

Commit 35a2cb9

Browse files
authored
Merge pull request #740 from bnmajor/bump-doc-version
Bump version in docs
2 parents 6b1e5d3 + ec8880b commit 35a2cb9

26 files changed

+34
-34
lines changed

README.md

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

2020
```bash
21-
pip install 'itkwidgets[all]>=1.0a23'
21+
pip install 'itkwidgets[all]>=1.0a49'
2222
```
2323

2424
### Jupyter Notebook
2525

2626
To install the widgets for the Jupyter Notebook with pip:
2727

2828
```bash
29-
pip install 'itkwidgets[notebook]>=1.0a23'
29+
pip install 'itkwidgets[notebook]>=1.0a49'
3030
```
3131

3232
Then look for the ImJoy icon at the top in the Jupyter Notebook:
@@ -38,7 +38,7 @@ Then look for the ImJoy icon at the top in the Jupyter Notebook:
3838
For Jupyter Lab 3 run:
3939

4040
```bash
41-
pip install 'itkwidgets[lab]>=1.0a23'
41+
pip install 'itkwidgets[lab]>=1.0a49'
4242
```
4343

4444
Then look for the ImJoy icon at the top in the Jupyter Notebook:
@@ -50,7 +50,7 @@ Then look for the ImJoy icon at the top in the Jupyter Notebook:
5050
For Google Colab run:
5151

5252
```bash
53-
pip install 'itkwidgets>=1.0a23'
53+
pip install 'itkwidgets>=1.0a49'
5454
```
5555

5656
## 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.0a24")
26+
await piplite.install("itkwidgets==1.0a49")
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.0a35'
75+
pip install 'itkwidgets[cli]>=1.0a49'
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.0a47')"
11+
"await piplite.install('itkwidgets==1.0a49')"
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.0a23'
12+
pip install 'itkwidgets[all]>=1.0a49'
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.0a23'
20+
pip install 'itkwidgets[notebook]>=1.0a49'
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.0a23'
32+
pip install 'itkwidgets[lab]>=1.0a49'
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.0a23'
44+
pip install 'itkwidgets>=1.0a49'
4545
```
4646

4747
### Command Line (CLI)
4848

4949
```bash
50-
pip install 'itkwidgets[cli]>=1.0a35'
50+
pip install 'itkwidgets[cli]>=1.0a49'
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.0a24
11+
- itkwidgets[all]>=1.0a49
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.0a24\",\n",
109+
" \"itkwidgets[all]>=1.0a49\",\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
@@ -26,7 +26,7 @@
2626
"source": [
2727
"import sys\n",
2828
"\n",
29-
"!{sys.executable} -m pip install -q imageio \"itkwidgets[all]>=1.0a40\""
29+
"!{sys.executable} -m pip install -q imageio \"itkwidgets[all]>=1.0a49\""
3030
]
3131
},
3232
{

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.0a23\""
24+
"!{sys.executable} -m pip install -q imageio \"itkwidgets[all]>=1.0a49\""
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.0a23\""
24+
"!{sys.executable} -m pip install -q \"itkwidgets[all]>=1.0a49\""
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.0a47\""
27+
"!{sys.executable} -m pip install -q \"monai[nibabel,itk,matplotlib,tqdm]\" \"itkwidgets[all]>=1.0a49\""
2828
]
2929
},
3030
{

0 commit comments

Comments
 (0)