Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Get get-pip.py from dirac server #163

Merged
merged 1 commit into from
Jan 27, 2021
Merged
Show file tree
Hide file tree
Changes from all 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 .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,8 @@ push_tag:
GIT_STRATEGY: none
image: cern/cc7-base
before_script:
- curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
- python get-pip.py
- curl -O -L https://diracos.web.cern.ch/diracos/bootstrap/get-pip.py
- python get-pip.py pip==20.2.4
- pip install -U requests python-dateutil pytz
- yum install git less -y
- eval `ssh-agent -s`
Expand Down
2 changes: 1 addition & 1 deletion diracos/scriptTemplates/build_python_module_tpl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ source $PIP_DIRAC/bin/activate

echo "Installing newer pip in virtualenv"
cd /tmp
curl -O -L https://bootstrap.pypa.io/get-pip.py
curl -O -L https://diracos.web.cern.ch/diracos/bootstrap/get-pip.py
python get-pip.py pip==20.2.4

pip install -r /tmp/requirements.txt
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if [ ! -z "$PIP_BUILD_DEPENDENCIES" ];
then
echo "Installing pip"
cd /tmp
curl -O -L https://bootstrap.pypa.io/get-pip.py
curl -O -L https://diracos.web.cern.ch/diracos/bootstrap/get-pip.py
python get-pip.py pip==20.2.4

echo "Installing pip-tools"
Expand Down