Skip to content

Commit 8c04a90

Browse files
update jupyterlab version to match the version within base image
1 parent 732add1 commit 8c04a90

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

images/universal/training/th03-cuda128-torch280-py312/README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,15 @@ If the base image (`workbench-images`) has been updated with new versions:
9898
# Pull the latest base image (example)
9999
podman pull quay.io/opendatahub/workbench-images:cuda-jupyter-minimal-ubi9-python-3.12-2025a_20250903
100100

101-
# Extract the pylock.toml from base image
102-
podman run --rm --entrypoint cat \
103-
quay.io/opendatahub/workbench-images:cuda-jupyter-minimal-ubi9-python-3.12-2025a_20250903 \
104-
/opt/app-root/src/pylock.toml > base-pylock.toml
101+
# Get bases exact installed versions
102+
podman run --rm --entrypoint pip \
103+
quay.io/opendatahub/workbench-images:cuda-jupyter-minimal-ubi9-python-3.12-2025a_20250903 \
104+
list --format freeze > base-freeze.txt
105+
106+
# Get specific packages versions
107+
podman run --rm --entrypoint sh \
108+
quay.io/opendatahub/workbench-images:cuda-jupyter-minimal-ubi9-python-3.12-2025a_20250903 \
109+
-lc 'python -m pip show jupyterlab jupyterlab-server jupyter-server jupyterlab-git jupyterlab-pygments | egrep "Name|Version"'
105110
```
106111

107112
2. **Update `pyproject.toml`** with new base package versions from `base-pylock.toml`

images/universal/training/th03-cuda128-torch280-py312/pylock.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1389,9 +1389,9 @@ wheels = [{ url = "https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602
13891389

13901390
[[packages]]
13911391
name = "jupyterlab"
1392-
version = "4.4.9"
1393-
sdist = { url = "https://files.pythonhosted.org/packages/45/b2/7dad2d0049a904d17c070226a4f78f81905f93bfe09503722d210ccf9335/jupyterlab-4.4.9.tar.gz", upload-time = 2025-09-26T17:28:20Z, size = 22966654, hashes = { sha256 = "ea55aca8269909016d5fde2dc09b97128bc931230183fe7e2920ede5154ad9c2" } }
1394-
wheels = [{ url = "https://files.pythonhosted.org/packages/1f/fd/ac0979ebd1b1975c266c99b96930b0a66609c3f6e5d76979ca6eb3073896/jupyterlab-4.4.9-py3-none-any.whl", upload-time = 2025-09-26T17:28:15Z, size = 12292552, hashes = { sha256 = "394c902827350c017430a8370b9f40c03c098773084bc53930145c146d3d2cb2" } }]
1392+
version = "4.4.4"
1393+
sdist = { url = "https://files.pythonhosted.org/packages/e2/4d/7ca5b46ea56742880d71a768a9e6fb8f8482228427eb89492d55c5d0bb7d/jupyterlab-4.4.4.tar.gz", upload-time = 2025-06-28T13:07:20Z, size = 23044296, hashes = { sha256 = "163fee1ef702e0a057f75d2eed3ed1da8a986d59eb002cbeb6f0c2779e6cd153" } }
1394+
wheels = [{ url = "https://files.pythonhosted.org/packages/f8/82/66910ce0995dbfdb33609f41c99fe32ce483b9624a3e7d672af14ff63b9f/jupyterlab-4.4.4-py3-none-any.whl", upload-time = 2025-06-28T13:07:15Z, size = 12296310, hashes = { sha256 = "711611e4f59851152eb93316c3547c3ec6291f16bb455f1f4fa380d25637e0dd" } }]
13951395

13961396
[[packages]]
13971397
name = "jupyterlab-git"

images/universal/training/th03-cuda128-torch280-py312/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies = [
1111

1212
# JupyterLab Core (exact versions from base image)
1313
"odh-jupyter-trash-cleanup==0.1.1",
14-
"jupyterlab==4.4.9",
14+
"jupyterlab==4.4.4",
1515
"jupyterlab-server==2.27.3",
1616
"jupyterlab-git==0.51.2",
1717
"jupyterlab-pygments==0.3.0",

0 commit comments

Comments
 (0)