Skip to content

Commit a096c2b

Browse files
authoredOct 23, 2024··
Upgrade to Python 3.12 (#2072)
1 parent 2b40f48 commit a096c2b

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed
 

Diff for: ‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
This changelog only contains breaking and/or significant changes manually introduced to this repository (using Pull Requests).
44
All image manifests can be found in [the wiki](https://github.com/jupyter/docker-stacks/wiki).
55

6+
## 2024-10-23
7+
8+
Affected: all images.
9+
10+
- **Breaking:** Switch to Python 3.12 ([#2072](https://github.com/jupyter/docker-stacks/pull/2072)).
11+
612
## 2024-10-22
713

814
Affected: `pyspark-notebook` and `all-spark-notebook` images.

Diff for: ‎README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,8 @@ If you want to use the older `Ubuntu` and/or `Python` version, you can use the f
120120
| 2022-10-09 | 22.04 | 3.9 | `ed2908bbb62e` |
121121
| 2023-05-30 | 22.04 | 3.10 | `4d70cf8da953` |
122122
| 2024-08-26 | 22.04 | 3.11 | `00987883e58d` |
123-
| weekly build | 24.04 | 3.11 | `latest` |
123+
| 2024-10-22 | 24.04 | 3.11 | `b74418220768` |
124+
| weekly build | 24.04 | 3.12 | `latest` |
124125

125126
## Contributing
126127

Diff for: ‎images/docker-stacks-foundation/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ RUN echo "auth requisite pam_deny.so" >> /etc/pam.d/su && \
8989
USER ${NB_UID}
9090

9191
# Pin the Python version here, or set it to "default"
92-
ARG PYTHON_VERSION=3.11
92+
ARG PYTHON_VERSION=3.12
9393

9494
# Setup work directory for backward-compatibility
9595
RUN mkdir "/home/${NB_USER}/work" && \

Diff for: ‎tests/docker-stacks-foundation/test_python_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from tests.conftest import TrackedContainer
66

77
LOGGER = logging.getLogger(__name__)
8-
EXPECTED_PYTHON_VERSION = "3.11"
8+
EXPECTED_PYTHON_VERSION = "3.12"
99

1010

1111
def test_python_version(container: TrackedContainer) -> None:

0 commit comments

Comments
 (0)
Please sign in to comment.