feat: support 3.14 in setup scripts

This commit is contained in:
Matthias
2026-04-01 07:24:33 +02:00
parent b0c14d1122
commit 8eb2edc0e2
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ $VenvName = ".venv"
$VenvDir = Join-Path $PSScriptRoot $VenvName
# Supported Python minor versions (detection order: prefer newest first)
$SupportedMinorVersions = @(13,12,11)
# Build a human-readable supported versions string like "3.11, 3.12 and 3.13"
$SupportedMinorVersions = @(14,13,12,11)
# Build a human-readable supported versions string like "3.11, 3.12 3.13 and 3.14"
$asc = $SupportedMinorVersions | Sort-Object
if ($asc.Count -eq 1) {
$SupportedPythonVersions = "3.$($asc[0])"