Skip to content

Commit ca0da9d

Browse files
committed
ipywidgets 8.0.0a3
dist/ipywidgets-8.0.0a3-py3-none-any.whl md5: 1af2b1a87d7e843ba705659fe0afe879 sha1: a0ef79d553b367724f8e4db84a22faa673871979 sha256: c6822fa0f1e66482a3d75fafe41394bee99d1802afe9840bbd55cd1d29fff163 dist/ipywidgets-8.0.0a3.tar.gz md5: 53f8613838b574c6323eb2d285265679 sha1: 6b71dfebf21c9137efaec5b4683f64edf5667ea1 sha256: d06f5cfc96f85bbbf1dfda2ec3bc1de62a55de05ca8aed71b8a38adcc676d971
1 parent 92c9ce6 commit ca0da9d

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

docs/source/dev_release.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,7 @@ curl -s https://pypi.org/pypi/jupyterlab-widgets/json | jq -r '[.releases[][] |
7373

7474
Go into the `widgetsnbextension` directory. Change `widgetsnbextension/_version.py` to reflect the new version number.
7575
```
76-
python setup.py sdist
77-
python setup.py bdist_wheel
76+
python setup.py sdist bdist_wheel
7877
twine upload dist/*
7978
```
8079

@@ -88,8 +87,7 @@ curl -s https://pypi.org/pypi/widgetsnbextension/json | jq -r '[.releases[][] |
8887
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.
8988

9089
```
91-
python setup.py sdist
92-
python setup.py bdist_wheel
90+
python setup.py sdist bdist_wheel
9391
twine upload dist/*
9492
```
9593

ipywidgets/_version.py

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

4-
__version__ = '8.0.0a2'
4+
5+
version_info = (8, 0, 0, 'alpha', 3)
6+
7+
_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
8+
9+
__version__ = '%s.%s.%s%s'%(version_info[0], version_info[1], version_info[2],
10+
'' if version_info[3]=='final' else _specifier_[version_info[3]]+str(version_info[4]))
511

612
__protocol_version__ = '2.0.0'
713

0 commit comments

Comments
 (0)