From dc7d53d097915a0975742cae2119601fb33a7a6f Mon Sep 17 00:00:00 2001 From: Zxilly Date: Sun, 23 Jun 2024 17:14:26 +0800 Subject: [PATCH] build: use python 3.12 for scripts Signed-off-by: Zxilly --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 26bbf5e30c..e54ceaefda 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -4,7 +4,8 @@ "ghcr.io/devcontainers/features/node:1": {}, "ghcr.io/devcontainers/features/go:1": {}, "ghcr.io/devcontainers/features/python:1": { - "toolsToInstall": "flake8,autopep8,black,yapf,mypy,pydocstyle,pycodestyle,bandit,pytest,pylint,pipx,poetry" + "version": "3.12", + "toolsToInstall": "flake8,autopep8,pipx,poetry" }, "ghcr.io/devcontainers/features/git:1": {} }