Skip to content
Snippets Groups Projects
Commit daecbdbb authored by YuviPanda's avatar YuviPanda
Browse files

Support jupyter-server-proxy >= 1.4.0

By default in 1.4.0, jupyter-server-proxy opens new
applications in an iframe. I don't think this should be the
default for most applications
(https://github.com/jupyterhub/jupyter-server-proxy/pull/198),
but regardless it is very nice to be explicit
parent b6dee24c
No related branches found
No related tags found
No related merge requests found
...@@ -35,4 +35,5 @@ def setup_desktop(): ...@@ -35,4 +35,5 @@ def setup_desktop():
'port': 5901, 'port': 5901,
'timeout': 30, 'timeout': 30,
'mappath': {'/': '/vnc_lite.html'}, 'mappath': {'/': '/vnc_lite.html'},
'new_browser_window': True
} }
...@@ -10,7 +10,7 @@ setup( ...@@ -10,7 +10,7 @@ setup(
'desktop = jupyter_desktop:setup_desktop', 'desktop = jupyter_desktop:setup_desktop',
] ]
}, },
install_requires=['jupyter-server-proxy>=1.2.0'], install_requires=['jupyter-server-proxy>=1.4.0'],
include_package_data=True, include_package_data=True,
zip_safe=False zip_safe=False
) )
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment