From 0530cbfae87aad476a2975d680ff7f3769ee7ce8 Mon Sep 17 00:00:00 2001 From: Benoit Chevallier-Mames Date: Tue, 28 May 2024 12:03:57 +0200 Subject: [PATCH] chore: remains 3.11 additions --- script/actions_utils/generate_test_matrix.py | 1 + script/make_utils/check_installation_with_all_python.sh | 4 ++-- script/make_utils/licenses.sh | 2 ++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/script/actions_utils/generate_test_matrix.py b/script/actions_utils/generate_test_matrix.py index 2dfea3b42..9810c91b7 100644 --- a/script/actions_utils/generate_test_matrix.py +++ b/script/actions_utils/generate_test_matrix.py @@ -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): diff --git a/script/make_utils/check_installation_with_all_python.sh b/script/make_utils/check_installation_with_all_python.sh index 6a22f0d71..db427a7dc 100755 --- a/script/make_utils/check_installation_with_all_python.sh +++ b/script/make_utils/check_installation_with_all_python.sh @@ -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" ) @@ -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 diff --git a/script/make_utils/licenses.sh b/script/make_utils/licenses.sh index fe298e114..eb754e027 100755 --- a/script/make_utils/licenses.sh +++ b/script/make_utils/licenses.sh @@ -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 ]