Skip to content

Commit 10c8861

Browse files
committed
updated bokeh tools
1 parent e28d005 commit 10c8861

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fabfile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ def prepare_deploymoent(branch_name):
3232
def deploy():
3333
with cd(env.project_root):
3434
run('git pull origin master')
35-
run('{}/conda install bokeh=0.10')
3635
run('{}/pip install -r requirements.txt'.format(env.bin))
3736
run('{}/python manage.py migrate'.format(env.bin))
3837
run('{}/python manage.py bower install'.format(env.bin))

status/view_helpers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828

2929
# bokeh graph
3030
def make_bokeh_graph(data, title, ytitle):
31-
p = figure(title=title, x_axis_type='datetime', plot_height=300)
31+
p = figure(title=title, x_axis_type='datetime', plot_height=300,
32+
tools='pan,box_zoom,reset,crosshair,hover')
3233
if data:
3334
xs, ys = zip(*[(m.pub_date, m.value) for m in data])
3435
else:

0 commit comments

Comments
 (0)