Skip to content

Commit e3815f9

Browse files
authored
MAINT: Fix Circle (#13574)
1 parent 7b189e9 commit e3815f9

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tools/circleci_dependencies.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
#!/bin/bash -ef
22

3+
ONLY_BINARY="--only-binary \"numpy,dipy,scipy,matplotlib,pandas,statsmodels,netCDF4,h5py\""
4+
5+
set -x
36
python -m pip install --upgrade "pip>=25.1" build
4-
python -m pip install --upgrade --progress-bar off \
7+
python -m pip install --upgrade --progress-bar off $ONLY_BINARY \
58
-ve .[full] \
69
--group=test \
710
--group=doc \
811
-r doc/sphinxext/related_software.txt \
9-
--only-binary "numpy,dipy,scipy,matplotlib,pandas,statsmodels" \
1012
"git+https://github.com/mne-tools/mne-bids.git" \
1113
"git+https://github.com/mne-tools/mne-qt-browser.git" \
1214
"git+https://github.com/pyvista/pyvista.git" \
1315
"git+https://github.com/sphinx-gallery/sphinx-gallery.git"
14-
python -m pip install --upgrade --progress-bar off --no-deps \
16+
python -m pip install --upgrade --progress-bar off --no-deps $ONLY_BINARY \
1517
-r doc/sphinxext/related_software_nodeps.txt

0 commit comments

Comments
 (0)