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:
49
49
python-version : ${{ matrix.python-version }}
50
50
51
51
- 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
53
53
54
54
- name : Install required file-formats packages
55
55
run : |
56
56
pushd required-fileformats
57
- python3 -m pip install -r requirements.txt
57
+ python3 -m pip install --break-system-packages - r requirements.txt
58
58
popd
59
59
60
60
- 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
62
62
63
63
- name : Install Package
64
- run : python3 -m pip install .[test]
64
+ run : python3 -m pip install --break-system-packages .[test]
65
65
66
66
- name : Pytest
67
67
run : pytest -vvs --cov nipype2pydra --cov-config .coveragerc --cov-report xml
92
92
python-version : ' 3.11'
93
93
94
94
- name : Install build tools
95
- run : python3 -m pip install build twine
95
+ run : python3 -m pip install --break-system-packagesbuild twine
96
96
97
97
- name : Build source and wheel distributions
98
98
run : python3 -m build .
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ test = [
54
54
" niworkflows" ,
55
55
" mriqc" ,
56
56
" nireports" ,
57
+ " nitime" ,
57
58
]
58
59
docs = [
59
60
" packaging" ,
You can’t perform that action at this time.
0 commit comments