Commit 87cb50ce authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Merge branch 'feat/346-cttc-fix-python-versions-in-install_requirements-sh-script' into 'develop'

Resolve "(CTTC) Fix Python versions in install_requirements.sh script"

See merge request !404
parents 77159a62 2b1df779
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -47,9 +47,12 @@ sudo ldconfig
cd ../..

echo "Updating PIP, SetupTools and Wheel..."
pip install --upgrade pip               # ensure next packages get the latest versions
pip install --upgrade setuptools wheel  # bring basic tooling for other requirements
pip install --upgrade pip-tools pylint  # bring tooling for package compilation and code linting
# Bring basic tooling for other requirements, package compilation, and code linting.
# Ensure next packages get the fixed versions to prevent:
#   "'InstallRequirement' object has no attribute 'use_pep517'"
pip install --upgrade 'pip==25.2'
pip install --upgrade 'setuptools==79.0.0' 'wheel==0.45.1'
pip install --upgrade 'pip-tools==7.3.0'
printf "\n"

echo "Creating integrated requirements file..."