From 8f3dce139302d355b323768b3d1682d1bdc8dfa7 Mon Sep 17 00:00:00 2001 From: Maxwell Muoto <41130755+max-muoto@users.noreply.github.com> Date: Sun, 10 Mar 2024 12:08:37 -0500 Subject: [PATCH] Upgrade to 3.12 --- README.md | 3 ++- images/docker-stacks-foundation/Dockerfile | 2 +- tests/docker-stacks-foundation/test_python_version.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d2b655af71..676edf27ac 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,8 @@ If you want to use the older `Ubuntu` and/or `Python` version, you can use the f | 2022-10-09 | 22.04 | 3.8 | `7285848c0a11` | | 2022-10-09 | 22.04 | 3.9 | `ed2908bbb62e` | | 2023-05-30 | 22.04 | 3.10 | `4d70cf8da953` | -| weekly build | 22.04 | 3.11 | `latest` | +| 2024-03-06 | 22.04 | 3.11 | `07dc2d08734b` | +| weekly build | 22.04 | 3.12 | `latest` | ## Contributing diff --git a/images/docker-stacks-foundation/Dockerfile b/images/docker-stacks-foundation/Dockerfile index f6b38c8c08..ee68ac523e 100644 --- a/images/docker-stacks-foundation/Dockerfile +++ b/images/docker-stacks-foundation/Dockerfile @@ -79,7 +79,7 @@ RUN echo "auth requisite pam_deny.so" >> /etc/pam.d/su && \ USER ${NB_UID} # Pin the Python version here, or set it to "default" -ARG PYTHON_VERSION=3.11 +ARG PYTHON_VERSION=3.12 # Setup work directory for backward-compatibility RUN mkdir "/home/${NB_USER}/work" && \ diff --git a/tests/docker-stacks-foundation/test_python_version.py b/tests/docker-stacks-foundation/test_python_version.py index 559853abb6..bf81df8356 100644 --- a/tests/docker-stacks-foundation/test_python_version.py +++ b/tests/docker-stacks-foundation/test_python_version.py @@ -5,7 +5,7 @@ from tests.conftest import TrackedContainer LOGGER = logging.getLogger(__name__) -EXPECTED_PYTHON_VERSION = "3.11" +EXPECTED_PYTHON_VERSION = "3.12" def test_python_version(container: TrackedContainer) -> None: