mirror of
https://github.com/jupyterhub/the-littlest-jupyterhub.git
synced 2025-12-18 21:54:05 +08:00
jupyterhub 1.0
bump oauthenticator patch as well
This commit is contained in:
@@ -189,13 +189,13 @@ def ensure_jupyterhub_package(prefix):
|
|||||||
and conda packages!
|
and conda packages!
|
||||||
"""
|
"""
|
||||||
conda.ensure_pip_packages(prefix, [
|
conda.ensure_pip_packages(prefix, [
|
||||||
'jupyterhub==0.9.6',
|
'jupyterhub==1.0.0',
|
||||||
'jupyterhub-dummyauthenticator==0.3.1',
|
'jupyterhub-dummyauthenticator==0.3.1',
|
||||||
'jupyterhub-systemdspawner==0.13',
|
'jupyterhub-systemdspawner==0.13',
|
||||||
'jupyterhub-firstuseauthenticator==0.12',
|
'jupyterhub-firstuseauthenticator==0.12',
|
||||||
'jupyterhub-nativeauthenticator==0.0.4',
|
'jupyterhub-nativeauthenticator==0.0.4',
|
||||||
'jupyterhub-ldapauthenticator==1.2.2',
|
'jupyterhub-ldapauthenticator==1.2.2',
|
||||||
'oauthenticator==0.8.1'
|
'oauthenticator==0.8.2',
|
||||||
])
|
])
|
||||||
traefik.ensure_traefik_binary(prefix)
|
traefik.ensure_traefik_binary(prefix)
|
||||||
|
|
||||||
@@ -242,7 +242,7 @@ def ensure_user_environment(user_requirements_txt_file):
|
|||||||
|
|
||||||
conda.ensure_pip_packages(USER_ENV_PREFIX, [
|
conda.ensure_pip_packages(USER_ENV_PREFIX, [
|
||||||
# JupyterHub + notebook package are base requirements for user environment
|
# JupyterHub + notebook package are base requirements for user environment
|
||||||
'jupyterhub==0.9.6',
|
'jupyterhub==1.0.0',
|
||||||
'notebook==5.7.8',
|
'notebook==5.7.8',
|
||||||
# Install additional notebook frontends!
|
# Install additional notebook frontends!
|
||||||
'jupyterlab==0.35.4',
|
'jupyterlab==0.35.4',
|
||||||
@@ -254,7 +254,7 @@ def ensure_user_environment(user_requirements_txt_file):
|
|||||||
# Most people consider ipywidgets to be part of the core notebook experience
|
# Most people consider ipywidgets to be part of the core notebook experience
|
||||||
'ipywidgets==7.4.2',
|
'ipywidgets==7.4.2',
|
||||||
# Pin tornado
|
# Pin tornado
|
||||||
'tornado<6.0'
|
'tornado<6.0',
|
||||||
])
|
])
|
||||||
|
|
||||||
if user_requirements_txt_file:
|
if user_requirements_txt_file:
|
||||||
|
|||||||
Reference in New Issue
Block a user