Skip to content

Commit ff9bc36

Browse files
committed
ipywidgets_bokeh 1.4.0.dev3
1 parent 0bd8743 commit ff9bc36

File tree

7 files changed

+9
-10
lines changed

7 files changed

+9
-10
lines changed

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
# Python
21
*.egg-info/
32
__pycache__/
43
.ipynb_checkpoints/
5-
6-
# [Java|Type]Script
4+
build/
75
dist/
86
node_modules/
97
bokeh*.tgz

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.4.0.dev2"
3+
__version__ = "1.4.0.dev3"

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.4.0.dev2'
110+
implementation_version = '1.4.0.dev3'
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.4.0-dev.2",
3+
"version": "1.4.0-dev.3",
44
"description": "Allows embedding of Jupyter widgets in Bokeh applications.",
55
"keywords": [
66
"bokeh",

scripts/deploy.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ cd ..
1717

1818
git clean -dfx
1919
python setup.py build_js sdist
20-
twine upload -u __tokeh__ -p $PYPI_TOKEN_IPYWIDGETS_BOKEH dist/ipywidgets_bokeh-x.y.z.tar.gz
20+
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
2122

2223
git clean -dfx
2324
conda build conda.recipe

setup.py

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

3333
setup_args = dict(
3434
name="ipywidgets_bokeh",
35-
version="1.4.0.dev2",
35+
version="1.4.0.dev3",
3636
install_requires=install_requires,
3737
python_requires=">=3.9",
3838
description="Allows embedding of Jupyter widgets in Bokeh layouts.",

0 commit comments

Comments
 (0)