File tree 4 files changed +9
-3
lines changed
images/docker-stacks-foundation
tests/by_image/docker-stacks-foundation
4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 3
3
This changelog only contains breaking and/or significant changes manually introduced to this repository (using Pull Requests).
4
4
All image manifests can be found in [ the wiki] ( https://github.com/jupyter/docker-stacks/wiki ) .
5
5
6
+ ## UNRELEASED
7
+
8
+ Affected: all images.
9
+
10
+ - ** Breaking:** ` docker-stacks-foundation ` : switch to Python 3.13 ([ #2163 ] ( https://github.com/jupyter/docker-stacks/pull/2163 ) ).
11
+
6
12
## 2025-04-13
7
13
8
14
Affected: ` tensorflow-notebook ` .
Original file line number Diff line number Diff line change 38
38
# Note that `ROOT_IMAGE` and `PYTHON_VERSION` arguments are only applicable to the `docker-stacks-foundation` image
39
39
build/% : DOCKER_BUILD_ARGS?=
40
40
build/% : ROOT_IMAGE?=ubuntu:24.04
41
- build/% : PYTHON_VERSION?=3.12
41
+ build/% : PYTHON_VERSION?=3.13
42
42
build/% : # # build the latest image for a stack using the system's architecture
43
43
docker build $(DOCKER_BUILD_ARGS ) --rm --force-rm \
44
44
--tag " $( REGISTRY) /$( OWNER) /$( notdir $@ ) " \
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ RUN echo "auth requisite pam_deny.so" >> /etc/pam.d/su && \
89
89
USER ${NB_UID}
90
90
91
91
# Pin the Python version here, or set it to "default"
92
- ARG PYTHON_VERSION=3.12
92
+ ARG PYTHON_VERSION=3.13
93
93
94
94
# Setup work directory for backward-compatibility
95
95
RUN mkdir "/home/${NB_USER}/work" && \
Original file line number Diff line number Diff line change 5
5
from tests .utils .tracked_container import TrackedContainer
6
6
7
7
LOGGER = logging .getLogger (__name__ )
8
- EXPECTED_PYTHON_VERSION = "3.12 "
8
+ EXPECTED_PYTHON_VERSION = "3.13 "
9
9
10
10
11
11
def test_python_version (container : TrackedContainer ) -> None :
You can’t perform that action at this time.
0 commit comments