Skip to content

Commit 29daecf

Browse files
committed
ipywidgets 8.0.0rc1, jupyterlab_widgets 3.0.0rc1, widgetsnbextension 4.0.0rc1
python/ipywidgets/dist/ipywidgets-8.0.0rc1-py3-none-any.whl md5: c55076d880554744d6a4ec35b520b252 sha1: 31143d9865ad7ec621e07d7a9e8e768432f5ec8b sha256: 5161de88c9a46957e58a8999715b3544c3a949f656436fecbe7066ca663ff227 python/ipywidgets/dist/ipywidgets-8.0.0rc1.tar.gz md5: 2286b383c33c1f8e73bd0a049dcf4514 sha1: 8661ed4d773f797093b7f42ef3225af96cf9e6de sha256: 76cfa43e7a2e1408e41fc68f1fcbcb5e366a5dd131c8232b527d87f70f220823 python/widgetsnbextension/dist/widgetsnbextension-4.0.0rc1-py3-none-any.whl md5: 14379a9e105e9f2c7eabe49d6d327396 sha1: 3f151596e77dd357b88a63ea1e6132d897515f0b sha256: f580ad7aa9ed7a0d7105dd1800fc5a4b79da3bb82cfd41049ceabab300c49cd3 python/widgetsnbextension/dist/widgetsnbextension-4.0.0rc1.tar.gz md5: 51d5c6da7a3be79e4555a081b80f5436 sha1: 1eb77485661d7a4393ed0e265d821abd040842d1 sha256: d2630b79797cbc43c091f7befbeaca1c67620ef4428b67ed05442b7c96dfb0c9 python/jupyterlab_widgets/dist/jupyterlab_widgets-3.0.0rc1-py3-none-any.whl md5: 89bd3dc27ff26d6d6296547d8057c9e2 sha1: 3eb6d7f7d62fa4fbceee8a306cd7bcad6699e636 sha256: 58bf8488c6e9655fb565b3631a5cf599b3481e03bf4c909f7f330907b3ef0bfc python/jupyterlab_widgets/dist/jupyterlab_widgets-3.0.0rc1.tar.gz md5: fc61c68c22c94c53fdca0618834cf0fc sha1: b623b83a9a3c817b9f338027765c8a39a555f1d3 sha256: 3dc697a0602fffd9141fe1ea6644f472ac8aab349b6ff487f1111fe604edd3c4
1 parent 424fae2 commit 29daecf

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

docs/source/dev_release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ curl -s https://pypi.org/pypi/widgetsnbextension/json | jq -r '[.releases[][] |
8686

8787
### ipywidgets
8888

89-
Go into the `python/ipywidgets` directory. Change `ipywidgets/_version.py` to reflect the new version number, and if necessary, a new `__html_manager_version__`. Change the `install_requires` parameter in `setup.py` reference the new widgetsnbextension version.
89+
Go into the `python/ipywidgets` directory. Change `ipywidgets/_version.py` to reflect the new version number, and if necessary, a new `__html_manager_version__`. Change the `install_requires` parameter in `setup.cfg` reference the new widgetsnbextension and jupyterlab_widgets version.
9090

9191
```
9292
python -m build

python/ipywidgets/ipywidgets/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) Jupyter Development Team.
22
# Distributed under the terms of the Modified BSD License.
33

4-
__version__ = '8.0.0rc0'
4+
__version__ = '8.0.0rc1'
55

66
__protocol_version__ = '2.1.0'
77
__control_protocol_version__ = '1.0.0'
@@ -12,4 +12,4 @@
1212
__jupyter_widgets_controls_version__ = '2.0.0'
1313

1414
# A compatible @jupyter-widgets/html-manager npm package semver range
15-
__html_manager_version__ = '^1.0.0-rc.0'
15+
__html_manager_version__ = '^1.0.0-rc.1'

python/ipywidgets/setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ install_requires =
3737
ipykernel>=4.5.1
3838
ipython>=6.1.0
3939
traitlets>=4.3.1
40-
widgetsnbextension~=4.0rc0
41-
jupyterlab_widgets~=3.0rc0
40+
widgetsnbextension~=4.0rc1
41+
jupyterlab_widgets~=3.0rc1
4242

4343
[options.extras_require]
4444
test =
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright (c) Jupyter Development Team.
22
# Distributed under the terms of the Modified BSD License.
33

4-
__version__ = '3.0.0rc0'
4+
__version__ = '3.0.0rc1'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright (c) Jupyter Development Team.
22
# Distributed under the terms of the Modified BSD License.
33

4-
__version__ = '4.0.0rc0'
4+
__version__ = '4.0.0rc1'

0 commit comments

Comments
 (0)