Skip to content
This repository has been archived by the owner on Mar 17, 2023. It is now read-only.

Update Python version of jupyterhub to Python 3.8 #115

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .aicoe-ci.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
check:
- thoth-build
build:
base-image: "quay.io/odh-jupyterhub/jupyterhub:v3.5.4"
base-image: "quay.io/tmckayus/jupyterhub-odh:3.8"
build-stratergy: "Source"
registry: "quay.io"
registry-org: "odh-jupyterhub"
Expand Down
1 change: 1 addition & 0 deletions .jupyter/jupyterhub_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

import os
import distutils
from distutils import util

#c.JupyterHub.log_level = 'DEBUG'
#c.Spawner.debug = True
Expand Down
2 changes: 1 addition & 1 deletion .s2i/bin/assemble
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
# Install pycurl for tornado to support self-signed certs - see https://github.com/jupyterhub/oauthenticator/pull/410
pip install --compile --install-option="--with-nss" --no-cache-dir pycurl

JSP_UI_PKG_PATH=/opt/app-root/lib/python3.6/site-packages/jupyterhub_singleuser_profiles/ui
JSP_UI_PKG_PATH=/opt/app-root/lib/python3.8/site-packages/jupyterhub_singleuser_profiles/ui
JSP_UI_SRC_PATH=/opt/app-root/src/jupyterhub-singleuser-profiles/jupyterhub_singleuser_profiles/ui/

if [[ -d "${JSP_UI_PKG_PATH}" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ jupyterhub-traefik-proxy = {ref = "b468da04bf0057e9baeb458de6c3f9f677cfb79e", gi
jupyterhub-idle-culler = "==1.1"

[requires]
python_version = "3.6"
python_version = "3.8"
Loading