Skip to content

Commit 947590d

Browse files
committed
ipywidgets_bokeh 1.4.0.dev1
1 parent 04bec68 commit 947590d

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

conda.recipe/meta.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ build:
1414

1515
extra:
1616
channels:
17+
- bokeh/label/dev
1718
- bokeh
1819
- conda-forge
1920

@@ -24,9 +25,9 @@ requirements:
2425
- nodejs 18.*
2526
run:
2627
- python >=3.9
27-
- bokeh 3.*,>=3.2.0.dev1
28+
- bokeh 3.* # TODO 3.2.dev1
2829
- ipywidgets 8.0.4
29-
- ipykernel 6.*,!=6.18.0 # until ipywidgets 8.0.6
30+
- ipykernel 6.*,!=6.18 # until ipywidgets 8.0.6
3031

3132
test:
3233
imports:

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

ipywidgets_bokeh/kernel.py

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

118118
class BokehKernel(ipykernel.kernelbase.Kernel):
119119
implementation = 'ipython'
120-
implementation_version = '1.3.0'
120+
implementation_version = '1.4.0.dev1'
121121
banner = 'banner'
122122

123123
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.3.0",
3+
"version": "1.4.0-dev.1",
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
@@ -25,14 +25,14 @@ def run(self):
2525
os.chdir("..")
2626

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

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