Skip to content

Commit 42a1539

Browse files
authored
Merge pull request freqtrade#13012 from freqtrade/feat/setup_14
Add support for 3.14 in setup-scripts
2 parents b0c14d1 + 8eb2edc commit 42a1539

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

setup.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
1515
if ($asc.Count -eq 1) {
1616
$SupportedPythonVersions = "3.$($asc[0])"

setup.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ function echo_block() {
88
}
99
UV=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

1414
function 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

0 commit comments

Comments
 (0)