Skip to content

Commit 71b1e8e

Browse files
committed
CI: Disable editable installs, test on pydra @ master
1 parent a4aef11 commit 71b1e8e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@ jobs:
1919
strategy:
2020
matrix:
2121
python-version: [3.7, 3.8, 3.9]
22-
pip-flags: ['', '--editable']
2322
pydra:
24-
- 'pydra'
25-
- '--editable git+https://github.com/nipype/pydra.git#egg=pydra'
23+
# - 'pydra'
24+
- 'git+https://github.com/nipype/pydra.git#egg=pydra'
2625

2726
steps:
2827
- uses: actions/checkout@v2
@@ -39,7 +38,7 @@ jobs:
3938
python -c "import pydra as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
4039
- name: Install task package
4140
run: |
42-
pip install ${{ matrix.pip-flags }} ".[dev]"
41+
pip install ".[dev]"
4342
python -c "import pydra.tasks.$SUBPACKAGE as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
4443
python -c "import pydra as m; print(f'{m.__name__} {m.__version__} @ {m.__file__}')"
4544
- name: Test with pytest

0 commit comments

Comments
 (0)