From f3079808ca8cf7a0520a0845fb954e1866913942 Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Sun, 9 Oct 2022 15:37:36 +0400 Subject: [PATCH] Build images with ubuntu-20.04 and python-3.10 --- base-notebook/Dockerfile | 2 +- tests/base-notebook/test_python.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index 0f9233f74d..ceebcbc855 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -85,7 +85,7 @@ RUN echo "auth requisite pam_deny.so" >> /etc/pam.d/su && \ USER ${NB_UID} # Pin python version here, or set it to "default" -ARG PYTHON_VERSION=3.9 +ARG PYTHON_VERSION=3.10 # Setup work directory for backward-compatibility RUN mkdir "/home/${NB_USER}/work" && \ diff --git a/tests/base-notebook/test_python.py b/tests/base-notebook/test_python.py index 1c0f2af5d7..8a41bebcf2 100644 --- a/tests/base-notebook/test_python.py +++ b/tests/base-notebook/test_python.py @@ -5,7 +5,7 @@ from tests.conftest import TrackedContainer LOGGER = logging.getLogger(__name__) -EXPECTED_PYTHON_VERSION = "3.9" +EXPECTED_PYTHON_VERSION = "3.10" def test_python_version(container: TrackedContainer) -> None: