Skip to content

Commit 10aa52b

Browse files
committed
FIX: Install packages through pip shim, ensuring proper placement
1 parent 33d1aff commit 10aa52b

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.circleci/config.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ jobs:
6969
- run:
7070
name: Setup DataLad & TemplateFlow
7171
command: |
72-
python -m pip install --no-cache-dir -U pip
73-
python -m pip install --no-cache-dir -U datalad
74-
python -m pip install --no-cache-dir -U templateflow
72+
pip install --no-cache-dir -U pip
73+
pip install --no-cache-dir -U datalad
74+
pip install --no-cache-dir -U templateflow
7575
python -c "from templateflow import api as tfapi; \
7676
tfapi.get('MNI152NLin2009cAsym', resolution=2, desc='brain', suffix='mask'); \
7777
tfapi.get('MNI152NLin2009cAsym', resolution=2, desc='fMRIPrep', suffix='boldref');"
@@ -80,8 +80,6 @@ jobs:
8080
key: env-v2-{{ .Branch }}-{{ .BuildNum }}
8181
paths:
8282
- /tmp/cache/git-annex-standalone.tar.gz
83-
- /usr/local/bin
84-
- /usr/local/lib/python3.9/site-packages
8583
- /usr/bin/git-annex
8684
- /usr/bin/git-annex-shell
8785
- /usr/lib/git-annex.linux

0 commit comments

Comments
 (0)