Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/promote-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
workspace-node-22: "TIMESTAMP_TAG"
workspace-node-23: "TIMESTAMP_TAG"
workspace-python: "TIMESTAMP_TAG"
workspace-python-3.9: "TIMESTAMP_TAG"
workspace-python-3.10: "TIMESTAMP_TAG"
workspace-python-3.11: "TIMESTAMP_TAG"
workspace-python-3.12: "TIMESTAMP_TAG"
Expand Down
1 change: 0 additions & 1 deletion .github/sync-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ sync:
- node-22
- node-23
- python
- python-3.9
- python-3.10
- python-3.11
- python-3.12
Expand Down
3 changes: 3 additions & 0 deletions .gitpod/automations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ tasks:
description: 'Starts the buildkit daemon for Docker image building'
triggeredBy:
- postDevcontainerStart
- postEnvironmentStart
command: |
sudo /usr/bin/buildkitd --debug --config ./buildkitd.toml --group gitpod
start-docker-registry:
name: 'Start local Docker registry'
description: 'Starts a local Docker registry on port 5000 for dazzle builds'
triggeredBy:
- postDevcontainerStart
- postEnvironmentStart
command: |
mkdir -p /workspace/registry
docker run -p 5000:5000 --name registry --rm -v /workspace/registry:/var/lib/registry registry:2
Expand All @@ -19,6 +21,7 @@ tasks:
description: 'Waits for registry to be ready and displays build commands'
triggeredBy:
- postDevcontainerStart
- postEnvironmentStart
- manual
command: |
# Wait for registry port to be available
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

A curated, chronologically ordered list of notable changes in [Gitpod's default workspace images](https://hub.docker.com/u/gitpod).

## 2026-01-20

- Remove `gitpod/workspace-python-3.9` (Python 3.9 reached EOL October 2025)
- Bump `gitpod/workspace-python` and `gitpod/workspace-full` to Python 3.13
- Bump pyenv to v2.6.20
- Bump `gitpod/workspace-yugabytedb` images to Python 3.10

## 2025-09-30

- Introduce `workspace-java-25`
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ Each contains a set of chunks: a common base and a language / tool. Every image
- [`gitpod/workspace-node-22`](https://hub.docker.com/r/gitpod/workspace-node-22) ✅
- [`gitpod/workspace-node-23`](https://hub.docker.com/r/gitpod/workspace-node-23) ✅
- [`gitpod/workspace-python`](https://hub.docker.com/r/gitpod/workspace-python) ✅
- [`gitpod/workspace-python-3.9`](https://hub.docker.com/r/gitpod/workspace-python-3.9) ✅
- [`gitpod/workspace-python-3.10`](https://hub.docker.com/r/gitpod/workspace-python-3.10) ✅
- [`gitpod/workspace-python-3.11`](https://hub.docker.com/r/gitpod/workspace-python-3.11) ✅
- [`gitpod/workspace-python-3.12`](https://hub.docker.com/r/gitpod/workspace-python-3.12) ✅
Expand Down
2 changes: 1 addition & 1 deletion build-chunk.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
set -euo pipefail
trap ctrl_c EXIT
trap '[[ -f .dazzle.yaml.orig ]] && cp .dazzle.yaml.orig dazzle.yaml' EXIT

# shellcheck source=/dev/null
source build-common.sh
Expand Down
2 changes: 1 addition & 1 deletion build-combo.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/bash
set -eo pipefail
trap ctrl_c EXIT
trap '[[ -f .dazzle.yaml.orig ]] && cp .dazzle.yaml.orig dazzle.yaml' EXIT

# shellcheck source=/dev/null
source build-common.sh
Expand Down
4 changes: 2 additions & 2 deletions chunks/lang-python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ RUN sudo install-packages \
libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev \
# Install PYENV
&& git clone https://github.com/pyenv/pyenv.git ~/.pyenv \
# v2.6.10
&& git -C ~/.pyenv checkout a419b003b4615bef05098865bb97e0fbc428095e \
# v2.6.20
&& git -C ~/.pyenv checkout 3441980e83bb1c5fdb2f1734ae4dab694d10ef71 \
&& pyenv install ${PYTHON_VERSION} \
&& pyenv global ${PYTHON_VERSION} \
&& for exec in global; do printf '%s\n' 'source "$HOME/.gp_pyenv.d/userbase.bash"' >> "$PYENV_ROOT/libexec/pyenv-$exec"; done \
Expand Down
5 changes: 1 addition & 4 deletions chunks/lang-python/chunk.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
variants:
- name: "3.13"
args:
PYTHON_VERSION: 3.13.8
PYTHON_VERSION: 3.13.11
- name: "3.12"
args:
PYTHON_VERSION: 3.12.12
Expand All @@ -11,6 +11,3 @@ variants:
- name: "3.10"
args:
PYTHON_VERSION: 3.10.19
- name: "3.9"
args:
PYTHON_VERSION: 3.9.24
5 changes: 2 additions & 3 deletions chunks/tool-yugabytedb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,13 @@ RUN curl -sSLo ./yugabyte.tar.gz https://downloads.yugabyte.com/releases/${YB_VE
&& rm ./yugabyte.tar.gz

# python is a required dependency of ycqlsh
# but it doesn't support Python 3.10+ due to https://github.com/yugabyte/cqlsh/issues/11, install 3.9 for now
# when building yugabyte combos, if our base is full, related python chunk tests fail
# so, use base as the combo ref, add chunks, but ignore Python chunk and install manually
ENV PATH="$HOME/.pyenv/bin:$HOME/.pyenv/shims:$PATH"
ENV PYENV_ROOT="$HOME/.pyenv"
RUN git clone https://github.com/pyenv/pyenv.git ~/.pyenv \
# v2.6.10
&& git -C ~/.pyenv checkout a419b003b4615bef05098865bb97e0fbc428095e \
# v2.6.20
&& git -C ~/.pyenv checkout 3441980e83bb1c5fdb2f1734ae4dab694d10ef71 \
&& pyenv install ${PYTHON_VERSION} \
&& pyenv global ${PYTHON_VERSION}

Expand Down
6 changes: 3 additions & 3 deletions chunks/tool-yugabytedb/chunk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ variants:
args:
YB_VERSION: 2.18.4.2
YB_BUILD: 2
PYTHON_VERSION: 3.9
PYTHON_VERSION: 3.10
- name: "2.19"
args:
YB_VERSION: 2.19.3.0
YB_BUILD: 140
PYTHON_VERSION: 3.9
PYTHON_VERSION: 3.10
- name: "2.20"
args:
YB_VERSION: 2.20.1.3
YB_BUILD: 3
PYTHON_VERSION: 3.9
PYTHON_VERSION: 3.10
7 changes: 1 addition & 6 deletions dazzle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ combiner:
- lang-go:1.24
- lang-java:11
- lang-node:22
- lang-python:3.12
- lang-python:3.13
- lang-ruby:3.2
- lang-rust:1
- tool-brew
Expand Down Expand Up @@ -121,11 +121,6 @@ combiner:
- base
chunks:
- lang-python:3.10
- name: python-3.9
ref:
- base
chunks:
- lang-python:3.9
- name: ruby-3.1
ref:
- base
Expand Down