We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2d9cf2 commit 52987e7Copy full SHA for 52987e7
1 file changed
pre-flight
@@ -62,12 +62,12 @@ function is-supported-python() {
62
minor="$(python3 -c 'import sys; print(sys.version_info[1])')"
63
64
if (( major < 3 )); then
65
- echo "Python $major.$minor is too old, please use 3.6+"
+ echo "Python $major.$minor is too old, please use >= 3.11"
66
false; return
67
fi
68
69
- if (( minor < 6 )); then
70
+ if (( minor < 11 )); then
71
72
73
0 commit comments