Skip to content

Commit a4726a2

Browse files
committed
Merge branch 'master' into enh/faster_checksum_states
2 parents 3c6f8cb + 6bf13d6 commit a4726a2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/testpydra.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [macos-latest, ubuntu-latest, windows-latest]
14-
python-version: [3.7, 3.8]
14+
python-version: [3.7, 3.8, 3.9]
1515
install: [install, develop, wheel]
1616
fail-fast: false
1717
runs-on: ${{ matrix.os }}

.github/workflows/testsingularity.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [3.7, 3.8]
11+
python-version: [3.7, 3.8, 3.9]
1212
fail-fast: False
1313

1414
steps:
@@ -34,14 +34,14 @@ jobs:
3434
- name: Build
3535
run: |
3636
cd singularity
37-
./mconfig --without-suid -p ${{ runner.tool_cache }}/singularity/${{ env.RELEASE_VERSION }}/x64
37+
./mconfig --without-suid -p /usr/local/
3838
make -C ./builddir
3939
sudo make -C ./builddir install
4040
cd ..
4141
- name: Echo singularity version
4242
run: |
4343
echo ${{ github.ref }}
44-
${{ runner.tool_cache }}/singularity/${{ env.RELEASE_VERSION }}/x64/bin/singularity --version
44+
singularity --version
4545
4646
4747
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/teststyle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build:
77
strategy:
88
matrix:
9-
python-version: [3.7, 3.8]
9+
python-version: [3.7, 3.8, 3.9]
1010
fail-fast: false
1111
runs-on: ubuntu-latest
1212

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Pydra requires Python 3.7+. To install in developer mode:
7878

7979
git clone [email protected]:nipype/pydra.git
8080
cd pydra
81-
pip install -e .[dev]
81+
pip install -e ".[dev]"
8282

8383

8484
In order to run pydra's test locally:
@@ -94,7 +94,7 @@ If you want to test execution with Dask:
9494

9595
git clone [email protected]:nipype/pydra.git
9696
cd pydra
97-
pip install -e .[dask]
97+
pip install -e ".[dask]"
9898

9999

100100

0 commit comments

Comments
 (0)