File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ _create_python_virtualenv() {
7272 pip3 install wheel
7373
7474 # Install the requirements
75- pip3 install --no-cache-dir --no-binary psycopg -r " ${SOURCEDIR} /requirements.txt"
75+ pip3 install --force-reinstall -- no-cache-dir --no-binary psycopg -r " ${SOURCEDIR} /requirements.txt"
7676
7777 # Fixup the paths in the venv activation scripts
7878 sed -i ' s/VIRTUAL_ENV=.*/VIRTUAL_ENV="\/usr\/pgadmin4\/venv"/g' venv/bin/activate
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ pip install --upgrade pip
1818if [ ${TEST} -eq 1 ];
1919then
2020 echo Installing requirements for running Python tests...
21- pip install --no-cache-dir wheel sphinx==7.4.7 sphinxcontrib-youtube -r web/regression/requirements.txt || { echo ' ERROR: Failed to install Python requirements.' ; exit 1; }
21+ pip install --force-reinstall -- no-cache-dir wheel sphinx==7.4.7 sphinxcontrib-youtube -r web/regression/requirements.txt || { echo ' ERROR: Failed to install Python requirements.' ; exit 1; }
2222else
2323 echo Installing requirements for executing and building only...
24- pip install --no-cache-dir wheel sphinx==7.4.7 sphinxcontrib-youtube -r requirements.txt || { echo ' ERROR: Failed to install Python requirements.' ; exit 1; }
24+ pip install --force-reinstall -- no-cache-dir wheel sphinx==7.4.7 sphinxcontrib-youtube -r requirements.txt || { echo ' ERROR: Failed to install Python requirements.' ; exit 1; }
2525fi
You can’t perform that action at this time.
0 commit comments