We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63808e4 commit da75de9Copy full SHA for da75de9
setup.sh
@@ -11,8 +11,8 @@ py_major=${python_version%%.*}
11
py_minor=${python_version#*.}
12
py_minor=${py_minor%%.*}
13
14
-if [[ "$py_major" -ne 3 || "$py_minor" -lt 10 || "$py_minor" -gt 12 ]]; then
15
- echo "[ERROR] MobSF dependencies require Python 3.10 - 3.12. You have Python ${python_version}."
+if [[ "$py_major" -ne 3 || "$py_minor" -lt 10 ]]; then
+ echo "[ERROR] MobSF dependencies require Python 3.10. You have Python ${python_version}."
16
exit 1
17
fi
18
echo "[INSTALL] Found Python ${python_version}"
0 commit comments