Skip to content

Commit 2657c3f

Browse files
Merge pull request #968 from alertlogic/python_version_update
Allow the use of python 3.10 and 3.9
2 parents 7c46b02 + 9e873c4 commit 2657c3f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/validate_my_definition.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ set -e
33

44
export TEMP=$(mktemp -d -t alertlogic-sdk-definitions-validation-XXXX)
55

6-
if command -v python3.8; then
6+
if command -v python3.10; then
7+
PYTHON=python3.10
8+
elif command -v python3.9; then
9+
PYTHON=python3.9
10+
elif command -v python3.8; then
711
PYTHON=python3.8
812
elif command -v python3.7; then
913
PYTHON=python3.7

0 commit comments

Comments
 (0)