|
1 | 1 | #!/bin/bash -ef |
2 | 2 |
|
3 | | -ONLY_BINARY="--only-binary=:all:" |
| 3 | +ONLY_BINARY="--only-binary=:all: --no-binary=mne-ari,rpy2-interface" |
4 | 4 |
|
5 | 5 | set -x |
6 | | -python -m pip install --upgrade $ONLY_BINARY "pip>=25.1" build |
| 6 | +python -m pip install --upgrade "pip>=25.1" build |
7 | 7 | # rpy2 3.6.7 (or its deps) cause problems with our installed R version, so pin them |
8 | | -# and the interface doesn't have wheels so allow it to build |
9 | | -python -m pip install --upgrade \ |
10 | | - "rpy2==3.6.6" "rpy2-rinterface==3.6.5" "rpy2-robjects==3.6.4" |
11 | | -python -m pip install --upgrade $ONLY_BINARY \ |
| 8 | +python -m pip install --upgrade --progress-bar off $ONLY_BINARY \ |
12 | 9 | -ve .[full-pyside6] \ |
13 | 10 | --group=test \ |
14 | 11 | --group=doc-full \ |
| 12 | + "rpy2==3.6.6" "rpy2-rinterface==3.6.5" "rpy2-robjects==3.6.4" \ |
15 | 13 | -r doc/sphinxext/related_software.txt \ |
16 | | - "git+https://github.com/mne-tools/mne-bids.git" \ |
17 | | - "git+https://github.com/mne-tools/mne-qt-browser.git" \ |
18 | | - "git+https://github.com/pyvista/pyvista.git" \ |
19 | | - "git+https://github.com/sphinx-gallery/sphinx-gallery.git" |
20 | | -python -m pip install --upgrade --no-deps $ONLY_BINARY \ |
| 14 | + "mne-bids @ https://github.com/mne-tools/mne-bids/archive/refs/heads/main.zip" \ |
| 15 | + "mne-qt-browser @ https://github.com/mne-tools/mne-qt-browser/archive/refs/heads/main.zip" \ |
| 16 | + "pyvista @ https://github.com/pyvista/pyvista/archive/refs/heads/main.zip" \ |
| 17 | + "pyvistaqt @ https://github.com/pyvista/pyvistaqt/archive/refs/heads/main.zip" \ |
| 18 | + "sphinx-gallery @ https://github.com/sphinx-gallery/sphinx-gallery/archive/refs/heads/master.zip" |
| 19 | +python -m pip install --upgrade --progress-bar off --no-deps $ONLY_BINARY \ |
21 | 20 | -r doc/sphinxext/related_software_nodeps.txt |
0 commit comments