Skip to content

Commit f3e8058

Browse files
[python] - Add support for debian trixie(13) (#356)
* [python] - Add support for debian trixie(13) * To restart smoke test * Update src/python/NOTES.md --------- Co-authored-by: Álvaro Rausell Guiard <[email protected]>
1 parent d2fd18f commit f3e8058

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

src/python/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Python 3",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/python:1-${templateOption:imageVariant}"
6+
"image": "mcr.microsoft.com/devcontainers/python:2-${templateOption:imageVariant}"
77

88
// Features to add to the dev container. More info: https://containers.dev/features.
99
// "features": {},

src/python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Develop Python 3 applications.
77

88
| Options Id | Description | Type | Default Value |
99
|-----|-----|-----|-----|
10-
| imageVariant | Python version (use -bookworm, or -bullseye variants on local arm64/Apple Silicon): | string | 3.12-bullseye |
10+
| imageVariant | Python version (use -trixie, -bookworm, or -bullseye variants on local arm64/Apple Silicon): | string | 3.13-trixie |
1111

1212
This template references an image that was [pre-built](https://containers.dev/implementors/reference/#prebuilding) to automatically include needed devcontainer.json metadata.
1313

src/python/devcontainer-template.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "python",
3-
"version": "4.1.0",
3+
"version": "5.0.0",
44
"name": "Python 3",
55
"description": "Develop Python 3 applications.",
66
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/python",
@@ -11,18 +11,26 @@
1111
"type": "string",
1212
"description": "Python version (use -bookworm, or -bullseye variants on local arm64/Apple Silicon):",
1313
"proposals": [
14+
"3-trixie",
15+
"3.13-trixie",
16+
"3.12-trixie",
17+
"3.11-trixie",
18+
"3.10-trixie",
19+
"3.9-trixie",
1420
"3-bookworm",
21+
"3.13-bookworm",
1522
"3.12-bookworm",
1623
"3.11-bookworm",
1724
"3.10-bookworm",
1825
"3.9-bookworm",
1926
"3-bullseye",
27+
"3.13-bullseye",
2028
"3.12-bullseye",
2129
"3.11-bullseye",
2230
"3.10-bullseye",
2331
"3.9-bullseye"
2432
],
25-
"default": "3.12-bullseye"
33+
"default": "3.13-trixie"
2634
}
2735
},
2836
"platforms": ["Python"],

0 commit comments

Comments
 (0)