Skip to content

Commit

Permalink
chore: remains 3.11 additions
Browse files Browse the repository at this point in the history
  • Loading branch information
bcm-at-zama authored and jfrery committed May 28, 2024
1 parent 2e11010 commit 0530cbf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions script/actions_utils/generate_test_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ class PythonVersion(enum.Enum):
V_3_8 = "3.8"
V_3_9 = "3.9"
V_3_10 = "3.10"
V_3_11 = "3.11"


class OS(enum.Enum):
Expand Down
4 changes: 2 additions & 2 deletions script/make_utils/check_installation_with_all_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ do
;;

"--all" )
VERSION_LIST="3.8 3.9 3.10"
VERSION_LIST="3.8 3.9 3.10 3.11"
;;

"--version" )
Expand All @@ -44,7 +44,7 @@ done

if [ "${VERSION_LIST}" == "" ]
then
VERSION_LIST="3.8 3.9 3.10"
VERSION_LIST="3.8 3.9 3.10 3.11"
fi

for VERSION in $VERSION_LIST
Expand Down
2 changes: 2 additions & 0 deletions script/make_utils/licenses.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ then
IS_CORRECT_PYTHON=1
elif [[ "${CHECK_VERSION}" == *"3.10"* ]]; then
IS_CORRECT_PYTHON=1
elif [[ "${CHECK_VERSION}" == *"3.11"* ]]; then
IS_CORRECT_PYTHON=1
fi

if [ $IS_CORRECT_PYTHON -eq 0 ]
Expand Down

0 comments on commit 0530cbf

Please sign in to comment.