Skip to content

Commit a62bad9

Browse files
committed
ipywidgets_bokeh 1.6.0
1 parent 442ad4a commit a62bad9

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

ipywidgets_bokeh/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from .widget import IPyWidget
22

3-
__version__ = "1.5.0"
3+
__version__ = "1.6.0"

ipywidgets_bokeh/kernel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def flush(self, *args):
107107

108108
class BokehKernel(ipykernel.kernelbase.Kernel):
109109
implementation = 'ipython'
110-
implementation_version = '1.5.0'
110+
implementation_version = '1.6.0'
111111
banner = 'banner'
112112

113113
shell_stream = Any(ShellStream(), allow_none=True)

ipywidgets_bokeh/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ipywidgets_bokeh/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bokeh/ipywidgets_bokeh",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"description": "Allows embedding of Jupyter widgets in Bokeh applications.",
55
"keywords": [
66
"bokeh",

scripts/deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ npm publish --access public
1616
cd ..
1717

1818
git clean -dfx
19-
python setup.py build_js sdist
19+
python setup.py build_js sdist bdist_wheel
2020
PYPI_DIST=dist/ipywidgets_bokeh-x.y.z
21-
twine upload -u __tokeh__ -p $PYPI_TOKEN_IPYWIDGETS_BOKEH $PYPI_DIST.tar.gz $PYPI_DIST-py3-none-any.whl
21+
twine upload -u __token__ -p $(cat ~/.tokens/pypi_ipywidgets_bokeh) $PYPI_DIST.tar.gz $PYPI_DIST-py3-none-any.whl
2222

2323
git clean -dfx
2424
conda build conda.recipe

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def run(self):
3939

4040
setup_args = dict(
4141
name="ipywidgets_bokeh",
42-
version="1.5.0",
42+
version="1.6.0",
4343
install_requires=install_requires,
4444
extras_require={"dev": dev_dependencies},
4545
python_requires=">=3.9",

0 commit comments

Comments
 (0)