Skip to content

Commit 52987e7

Browse files
committed
Update pre-flight to reflect new minimum Python requirement
1 parent e2d9cf2 commit 52987e7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pre-flight

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ function is-supported-python() {
6262
minor="$(python3 -c 'import sys; print(sys.version_info[1])')"
6363

6464
if (( major < 3 )); then
65-
echo "Python $major.$minor is too old, please use 3.6+"
65+
echo "Python $major.$minor is too old, please use >= 3.11"
6666
false; return
6767
fi
6868

69-
if (( minor < 6 )); then
70-
echo "Python $major.$minor is too old, please use 3.6+"
69+
if (( minor < 11 )); then
70+
echo "Python $major.$minor is too old, please use >= 3.11"
7171
false; return
7272
fi
7373

0 commit comments

Comments
 (0)