Skip to content

Commit 50ccbc6

Browse files
committed
update utils.sh
1 parent 4344ce9 commit 50ccbc6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bindings/python/.evergreen/utils.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ find_python3() {
6969
is_python_39() {
7070
if [ -z "$1" ]; then
7171
return 1
72-
elif $1 -c "import sys; exit(sys.version_info[:2] < (3, 10))"; then
73-
# runs when sys.version_info[:2] >= (3, 10)
72+
elif $1 -c "import sys; exit(sys.version_info[:2] < (3, 9))"; then
73+
# runs when sys.version_info[:2] >= (3, 9)
7474
return 0
7575
else
7676
return 1

0 commit comments

Comments
 (0)