Skip to content

Commit

Permalink
ipywidgets_bokeh 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpap committed Mar 25, 2024
1 parent 442ad4a commit a62bad9
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion ipywidgets_bokeh/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .widget import IPyWidget

__version__ = "1.5.0"
__version__ = "1.6.0"
2 changes: 1 addition & 1 deletion ipywidgets_bokeh/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def flush(self, *args):

class BokehKernel(ipykernel.kernelbase.Kernel):
implementation = 'ipython'
implementation_version = '1.5.0'
implementation_version = '1.6.0'
banner = 'banner'

shell_stream = Any(ShellStream(), allow_none=True)
Expand Down
4 changes: 2 additions & 2 deletions ipywidgets_bokeh/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ipywidgets_bokeh/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bokeh/ipywidgets_bokeh",
"version": "1.5.0",
"version": "1.6.0",
"description": "Allows embedding of Jupyter widgets in Bokeh applications.",
"keywords": [
"bokeh",
Expand Down
4 changes: 2 additions & 2 deletions scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ npm publish --access public
cd ..

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

git clean -dfx
conda build conda.recipe
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def run(self):

setup_args = dict(
name="ipywidgets_bokeh",
version="1.5.0",
version="1.6.0",
install_requires=install_requires,
extras_require={"dev": dev_dependencies},
python_requires=">=3.9",
Expand Down

0 comments on commit a62bad9

Please sign in to comment.