Skip to content

Commit 451b545

Browse files
committed
added dep and use '--break-system-packages' in gha
1 parent 284458d commit 451b545

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/ci-cd.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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
@@ -92,7 +92,7 @@ jobs:
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 .

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ test = [
5454
"niworkflows",
5555
"mriqc",
5656
"nireports",
57+
"nitime",
5758
]
5859
docs = [
5960
"packaging",

0 commit comments

Comments
 (0)