Skip to content

Commit cbcf0aa

Browse files
authored
feat(python): set latest stable to 3.12 (#7405)
Signed-off-by: pyranota <[email protected]>
1 parent 251091b commit cbcf0aa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ ARG WITH_GIT=true
117117
# 1. Change placeholder in instanceSettings.ts
118118
# 2. Change LATEST_STABLE_PY in dockerfile
119119
# 3. Change #[default] annotation for PyVersion in backend
120-
ARG LATEST_STABLE_PY=3.11.10
120+
ARG LATEST_STABLE_PY=3.12
121121
ENV UV_PYTHON_INSTALL_DIR=/tmp/windmill/cache/py_runtime
122122
ENV UV_PYTHON_PREFERENCE=only-managed
123123

backend/windmill-common/src/worker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2002,8 +2002,8 @@ pub fn split_python_requirements<T: AsRef<str>>(requirements: T) -> Vec<String>
20022002
#[repr(u32)]
20032003
pub enum PyVAlias {
20042004
Py310 = 10,
2005-
#[default]
20062005
Py311,
2006+
#[default]
20072007
Py312,
20082008
Py313,
20092009
}

frontend/src/lib/components/instanceSettings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ export const settings: Record<string, Setting[]> = {
277277
{
278278
label: 'Latest Stable',
279279
value: 'default',
280-
tooltip: 'python-3.11'
280+
tooltip: 'python-3.12'
281281
},
282282
{
283283
label: '3.10'

0 commit comments

Comments
 (0)