Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

Commit a2917ea

Browse files
authored
Update install_requirements.sh
1 parent 988e8a5 commit a2917ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install/install_requirements.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ fi
2121
echo "Using python executable: $PYTHON_EXECUTABLE"
2222

2323
PYTHON_SYS_VERSION="$($PYTHON_EXECUTABLE -c "import sys; print(f'{sys.version_info.major}.{sys.version_info.minor}')")"
24-
# Check python version. Expect greater than 3.10.x
24+
# Check python version. Expect at least 3.10.x
2525
if ! $PYTHON_EXECUTABLE -c "
2626
import sys
2727
if sys.version_info < (3, 10):
2828
sys.exit(1)
2929
";
3030
then
31-
echo "Python version must be greater than 3.10.x. Detected version: $PYTHON_SYS_VERSION"
31+
echo "Python version must be at least 3.10.x. Detected version: $PYTHON_SYS_VERSION"
3232
exit 1
3333
fi
3434

0 commit comments

Comments
 (0)