Skip to content

Commit 1489fb6

Browse files
committed
ipywidgets_bokeh 1.4.0.dev2
1 parent 7ea0842 commit 1489fb6

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

conda.recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ requirements:
2626
run:
2727
- python >=3.9
2828
- bokeh 3.* # TODO 3.2.dev1
29-
- ipywidgets 8.0.4
29+
- ipywidgets 8.*
3030
- ipykernel 6.*,!=6.18 # until ipywidgets 8.0.6
3131

3232
test:

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

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ def run(self):
2626

2727
install_requires = [
2828
"bokeh ==3.*", # TODO 3.2.dev1
29-
"ipywidgets ==8.0.4",
29+
"ipywidgets ==8.*",
3030
"ipykernel ==6.*,!=6.18.0", # until ipywidgets 8.0.6
3131
]
3232

3333
setup_args = dict(
3434
name="ipywidgets_bokeh",
35-
version="1.4.0.dev1",
35+
version="1.4.0.dev2",
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)