We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 739340a commit 7f21ca6Copy full SHA for 7f21ca6
1 file changed
src/universal/test-project/test.sh
@@ -183,7 +183,8 @@ checkPythonPackageVersion "python" "requests" "2.31.0"
183
184
## Python -alternative version 3.11. Must be removed when pinned version 3.11 is updated to a different python version.
185
checkPythonPackageVersion "/usr/local/python/3.11.*/bin/python" "setuptools" "78.1.1"
186
-check "pip-version-for-3.11" bash -c "/usr/local/python/3.11.*/bin/python -m pip --version | grep -E '26\.[0-9]+(\.[0-9]+)?'"
+pip_version_3_11=$(/usr/local/python/3.11.*/bin/python -m pip --version)
187
+check-version-ge "pip-version-for-3.11" "${pip_version_3_11}" "pip 26.0"
188
189
## Conda Python
190
checkCondaPackageVersion "requests" "2.31.0"
0 commit comments