Skip to content

Commit 694834b

Browse files
Merge pull request #15 from OpenAstroTech/bugfix/js/14-unsupport-py-3-11
Remove Linux support for python 3.11
2 parents 4702dd0 + f5b0672 commit 694834b

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)