Skip to content

Commit

Permalink
chore(ci): use python3.12 as build tool base (#15520)
Browse files Browse the repository at this point in the history
  • Loading branch information
everpcpc authored May 14, 2024
1 parent 03fc855 commit 05805e5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker/build-tool/debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:bullseye
FROM python:3.12-bullseye

ENV TERM=dumb
ENV DEBIAN_FRONTEND=noninteractive
Expand Down
4 changes: 4 additions & 0 deletions scripts/setup/dev_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,10 @@ function install_ziglang {
function install_python3 {
PACKAGE_MANAGER=$1

if python3 --version; then
echo "==> python3 is already installed"
return
fi
echo "==> installing python3..."

case "$PACKAGE_MANAGER" in
Expand Down

0 comments on commit 05805e5

Please sign in to comment.