Skip to content
Merged
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/universal/test-project/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@ checkPythonPackageVersion "python" "requests" "2.31.0"

## Python -alternative version 3.11. Must be removed when pinned version 3.11 is updated to a different python version.
checkPythonPackageVersion "/usr/local/python/3.11.*/bin/python" "setuptools" "78.1.1"
check "pip-version-for-3.11" bash -c "/usr/local/python/3.11.*/bin/python -m pip --version | grep 25.3"
pip_version_3_11=$(/usr/local/python/3.11.*/bin/python -m pip --version)
check-version-ge "pip-version-for-3.11" "${pip_version_3_11}" "pip 25.3"

## Conda Python
checkCondaPackageVersion "requests" "2.31.0"
Expand All @@ -193,7 +194,6 @@ checkCondaPackageVersion "urllib3" "2.6.3"
checkCondaPackageVersion "brotli" "1.2.0"

## Test Conda
check "conda-update-conda" bash -c "conda update -y conda"
Comment thread
abdurriq marked this conversation as resolved.
check "conda-install-tensorflow" bash -c "conda create --name test-env -c conda-forge --yes tensorflow"
check "conda-install-pytorch" bash -c "conda create --name test-env -c conda-forge --yes pytorch"

Expand Down