From 884c233a7b13dfa010bda9706de8ef88ca225a0a Mon Sep 17 00:00:00 2001 From: Alex Carney Date: Mon, 21 Oct 2024 22:41:14 +0100 Subject: [PATCH] devenv: Bump default Python to 3.13 --- .devcontainer/tools.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/tools.mk b/.devcontainer/tools.mk index 73f976a6..927b62e8 100644 --- a/.devcontainer/tools.mk +++ b/.devcontainer/tools.mk @@ -8,7 +8,7 @@ endif NODE_VERSION := 20.18.0 # The versions of Python we support -PYXX_versions := 3.9 3.10 3.11 3.12 +PYXX_versions := 3.9 3.10 3.11 3.12 3.13 PY_INTERPRETERS = # Hatch is not only used for building packages, but bootstrapping any missing @@ -74,7 +74,7 @@ PY ?= $(shell command -v python3) ifeq ($(strip $(PY)),) PY := $(BIN)/python -$(PY): $(PY312) +$(PY): $(PY313) ln -s $< $@ $@ --version touch $@