Skip to content

Commit 5595b5f

Browse files
committed
fixing issue with upgrading pip
1 parent 1f0c82f commit 5595b5f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
# Python 3 installation tasks
1717
- run:
1818
name: Install pkg_utils (Python 3)
19-
command: pip3 install -U git+https://github.com/KarrLab/pkg_utils.git#egg=pkg_utils
19+
command: python3 -m pip install -U git+https://github.com/KarrLab/pkg_utils.git#egg=pkg_utils
2020
- run:
2121
name: Install karr_lab_build_utils (Python 3)
2222
command: |
23-
pip3 install -U git+https://github.com/KarrLab/sphinxcontrib-googleanalytics.git#egg=sphinxcontrib_googleanalytics
24-
pip3 install -U git+https://github.com/KarrLab/wc_utils.git#egg=wc_utils[all]
25-
pip3 install -U git+https://github.com/KarrLab/karr_lab_build_utils.git#egg=karr_lab_build_utils[all]
23+
python3 -m pip install -U git+https://github.com/KarrLab/sphinxcontrib-googleanalytics.git#egg=sphinxcontrib_googleanalytics
24+
python3 -m pip install -U git+https://github.com/KarrLab/wc_utils.git#egg=wc_utils[all]
25+
python3 -m pip install -U git+https://github.com/KarrLab/karr_lab_build_utils.git#egg=karr_lab_build_utils[all]
2626
- run:
2727
name: Install package configuration files including credentials
2828
command: karr_lab_build_utils3 download-install-package-config-files
@@ -32,13 +32,13 @@ jobs:
3232
if [[ -f .circleci/requirements.txt ]]; then
3333
while IFS="" read -r line || [ -n "$line" ]; do
3434
if [[ ! -z "$line" ]] && [[ ! "$line" =~ ^# ]]; then
35-
pip3 install -U "$line"
35+
python3 -m pip install -U "$line"
3636
fi
3737
done < .circleci/requirements.txt
3838
fi
3939
- run:
4040
name: Install package (Python 3)
41-
command: pip3 install -U -e .[all]
41+
command: python3 -m pip install -U -e .[all]
4242

4343
# Save packages to cache
4444
- save_cache:

0 commit comments

Comments
 (0)