File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -49,19 +49,19 @@ jobs:
4949 python-version : ${{ matrix.python-version }}
5050
5151 - name : Update build tools
52- run : python3 -m pip install --upgrade pip setuptools wheel
52+ run : python3 -m pip install --break-system-packages -- upgrade pip setuptools wheel
5353
5454 - name : Install required file-formats packages
5555 run : |
5656 pushd required-fileformats
57- python3 -m pip install -r requirements.txt
57+ python3 -m pip install --break-system-packages - r requirements.txt
5858 popd
5959
6060 - name : Install Dipy separately as it was causing trouble
61- run : python3 -m pip install dipy
61+ run : python3 -m pip install --break-system-packages dipy
6262
6363 - name : Install Package
64- run : python3 -m pip install .[test]
64+ run : python3 -m pip install --break-system-packages .[test]
6565
6666 - name : Pytest
6767 run : pytest -vvs --cov nipype2pydra --cov-config .coveragerc --cov-report xml
9292 python-version : ' 3.11'
9393
9494 - name : Install build tools
95- run : python3 -m pip install build twine
95+ run : python3 -m pip install --break-system-packagesbuild twine
9696
9797 - name : Build source and wheel distributions
9898 run : python3 -m build .
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ test = [
5454 " niworkflows" ,
5555 " mriqc" ,
5656 " nireports" ,
57+ " nitime" ,
5758]
5859docs = [
5960 " packaging" ,
You can’t perform that action at this time.
0 commit comments