Skip to content

Commit f5b0672

Browse files
Remove Linux support for python 3.11. Should probably have a build matrix check for this in CI
1 parent 4702dd0 commit f5b0672

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/OATFWGUI_Linux.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ function check_py_version {
5757
echo "Python major version $PY_VER_MAJ ($PY_VER_ALL) is not supported"
5858
return 1
5959
fi
60-
# Only support 3.7+
61-
if ! list_include_item '7 8 9 10 11' "$PY_VER_MIN"; then
60+
# Only support 3.7+, <3.11
61+
if ! list_include_item '7 8 9 10' "$PY_VER_MIN"; then
6262
echo "Python minor version $PY_VER_MIN ($PY_VER_ALL) is not supported"
6363
return 1
6464
fi

0 commit comments

Comments
 (0)