Skip to content

Commit

Permalink
Release 0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvainCorlay committed Mar 7, 2019
1 parent a7b6894 commit b9a7faf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ dependencies:
- ipyvolume
- bqplot
- scipy
- voila=0.0.8
- voila=0.0.9
2 changes: 1 addition & 1 deletion voila/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
# The full license is in the file LICENSE, distributed with this software. #
#############################################################################

version_info = (0, 0, 8)
version_info = (0, 0, 9)
__version__ = '.'.join(map(str, version_info))
6 changes: 3 additions & 3 deletions voila/server_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ def load_jupyter_server_extension(server_app):
# First look into 'nbextensions_path' configuration key (classic notebook)
# and fall back to default path for nbextensions (jupyter server).
if 'nbextensions_path' in web_app.settings:
nbextensions_path = web_app.settings['nbextensions_path']
nbextensions_path = web_app.settings['nbextensions_path']
else:
nbextensions_path = jupyter_path('nbextensions')
nbextensions_path = jupyter_path('nbextensions')
web_app.add_handlers(host_pattern, [
(url_path_join(base_url, '/voila/render' + path_regex), VoilaHandler, {
'config': server_app.config,
Expand All @@ -63,7 +63,7 @@ def load_jupyter_server_extension(server_app):
url_path_join(base_url, r'/voila/nbextensions/(.*)'),
FileFindHandler,
{
'path': nbextensions_path,
'path': nbextensions_path,
'no_cache_paths': ['/'], # don't cache anything in nbextensions
},
)
Expand Down

0 comments on commit b9a7faf

Please sign in to comment.