Skip to content

Commit cae762f

Browse files
authored
update devcontainer to use python 3.14 (#23241)
The devcontainer setup appears to be failing because it uses Python 3.11 instead of 3.14. I still see some references to 3.11 in comments, but unsure if what's accurate at the moment — keeping this change scoped to just the devcontainer issue.
1 parent 0cac9af commit cae762f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"minikube": "none"
1212
},
1313
"ghcr.io/devcontainers/features/python:1": {
14-
"version": "3.11.11"
14+
"version": "3.14.4"
1515
},
1616
"ghcr.io/devcontainers/features/rust:1": {
1717
"profile": "complete"
@@ -48,9 +48,9 @@
4848
"python.analysis.extraPaths": ["src/python"],
4949
"black-formatter.args": ["--config=pyproject.toml"],
5050
"flake8.args": ["--config=build-support/flake8/.flake8"],
51-
"flake8.path": ["dist/export/python/virtualenvs/flake8/3.11.11/bin/flake8"],
51+
"flake8.path": ["dist/export/python/virtualenvs/flake8/3.14.4/bin/flake8"],
5252
"mypy-type-checker.args": ["--config-file=pyproject.toml"],
53-
"mypy-type-checker.path": ["dist/export/python/virtualenvs/mypy/3.11.11/bin/mypy"],
53+
"mypy-type-checker.path": ["dist/export/python/virtualenvs/mypy/3.14.4/bin/mypy"],
5454
"rust-analyzer.linkedProjects": ["src/rust/engine/Cargo.toml"]
5555
}
5656
}

0 commit comments

Comments
 (0)