File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ $VenvName = ".venv"
99$VenvDir = Join-Path $PSScriptRoot $VenvName
1010
1111# Supported Python minor versions (detection order: prefer newest first)
12- $SupportedMinorVersions = @ (13 , 12 , 11 )
13- # Build a human-readable supported versions string like "3.11, 3.12 and 3.13 "
12+ $SupportedMinorVersions = @ (14 , 13 , 12 , 11 )
13+ # Build a human-readable supported versions string like "3.11, 3.12 3.13 and 3.14 "
1414$asc = $SupportedMinorVersions | Sort-Object
1515if ($asc.Count -eq 1 ) {
1616 $SupportedPythonVersions = " 3.$ ( $asc [0 ]) "
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ function echo_block() {
88}
99UV=false
1010# Supported Python minor versions (order matters for detection)
11- SUPPORTED_MINOR_VERS=(13 12 11)
12- SUPPORTED_PY_VERSIONS=" 3.11, 3.12 and 3.13 "
11+ SUPPORTED_MINOR_VERS=(14 13 12 11)
12+ SUPPORTED_PY_VERSIONS=" 3.11, 3.12, 3.13 and 3.14 "
1313
1414function check_installed_pip() {
1515 ${PYTHON} -m pip > /dev/null
@@ -254,7 +254,7 @@ function install() {
254254 install_redhat
255255 else
256256 echo " This script does not support your OS."
257- echo " If you have Python version 3.11 - 3.13 , pip, virtualenv installed you can continue."
257+ echo " If you have Python version 3.11 - 3.14 , pip, virtualenv installed you can continue."
258258 echo " Wait 10 seconds to continue the next install steps or use ctrl+c to interrupt this shell."
259259 sleep 10
260260 fi
You can’t perform that action at this time.
0 commit comments