Skip to content

Commit 6c27245

Browse files
committed
Update documentation for bokeh 3
1 parent 5e70f56 commit 6c27245

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
matplotlib >= 3
2-
bokeh >= 2
3-
selenium >= 3
4-
pandas >= 1
5-
pandocfilters >= 1.4
1+
matplotlib >= 3, <4
2+
bokeh >= 3, <4
3+
selenium >= 4, <5
4+
pandas >= 1, <2
5+
pandocfilters >= 1.4, <2

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ y = np.random.standard_normal(n)
100100

101101
bins = hexbin(x, y, 0.1)
102102

103-
p = figure(title="Interactive plotting with Bokeh", tools="wheel_zoom,pan,reset", match_aspect=True, background_fill_color='#440154', plot_width=550, plot_height=550)
103+
p = figure(title="Interactive plotting with Bokeh", tools="wheel_zoom,pan,reset", match_aspect=True, background_fill_color='#440154', width=550, height=550)
104104

105105
p.grid.visible = False
106106

@@ -125,7 +125,7 @@ y = np.random.standard_normal(n)
125125
126126
bins = hexbin(x, y, 0.1)
127127
128-
p = figure(title="Interactive plotting with Bokeh", tools="wheel_zoom,pan,reset", match_aspect=True, background_fill_color='#440154', plot_width=550, plot_height=550)
128+
p = figure(title="Interactive plotting with Bokeh", tools="wheel_zoom,pan,reset", match_aspect=True, background_fill_color='#440154', width=550, height=550)
129129
130130
p.grid.visible = False
131131

0 commit comments

Comments
 (0)