File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ jobs:
182
182
docker exec slurm bash -c "ls -la /pydra && echo list pydra dir"
183
183
docker exec slurm bash -c "CONFIGURE_OPTS=\"-with-openssl=/opt/openssl\" pyenv install -v ${{ matrix.python-version }}"
184
184
docker exec slurm bash -c "pyenv global ${{ matrix.python-version }}"
185
- docker exec slurm bash -c "pip install --upgrade pip && pip install -e /pydra[test,psij] && python -c 'import pydra.engine; print(pydra.utils.__version__)'"
185
+ docker exec slurm bash -c "pip install --upgrade pip && pip install 'numpy<2' -e /pydra[test,psij] && python -c 'import pydra.engine; print(pydra.utils.__version__)'"
186
186
- name : Run pytest
187
187
run : |
188
188
docker exec slurm bash -c "cd /pydra; pytest pydra/workers/tests/test_worker.py --only-worker=slurm --color=yes"
@@ -315,9 +315,12 @@ jobs:
315
315
with :
316
316
auto-activate-base : true
317
317
activate-environment : " "
318
+ # We generate dummy aliases so they can be deleted by conda later without throwing an error
318
319
- name : Install MRtrix via Conda
319
320
run : |
320
- conda install -c mrtrix3 mrtrix3
321
+ alias shview='ls'
322
+ alias mrview='ls'
323
+ conda install -c conda-forge -c MRtrix3 mrtrix3 libstdcxx-ng
321
324
mrconvert --version
322
325
- name : Set up Python
323
326
uses : actions/setup-python@v5
You can’t perform that action at this time.
0 commit comments