@@ -22,16 +22,16 @@ jobs:
22
22
runs-on : ubuntu-latest
23
23
strategy :
24
24
matrix :
25
- python-version : [3.7, 3.9 ] # Check oldest and newest versions
25
+ python-version : [3.7, '3.10' ] # Check oldest and newest versions
26
26
pip-flags : ['', '--editable']
27
27
pydra :
28
28
- ' pydra'
29
29
- ' --editable git+https://github.com/nipype/pydra.git#egg=pydra'
30
30
31
31
steps :
32
- - uses : actions/checkout@v2
32
+ - uses : actions/checkout@v3
33
33
- name : Set up Python ${{ matrix.python-version }}
34
- uses : actions/setup-python@v2
34
+ uses : actions/setup-python@v4
35
35
with :
36
36
python-version : ${{ matrix.python-version }}
37
37
- name : Install build dependencies
@@ -51,12 +51,12 @@ jobs:
51
51
runs-on : ubuntu-latest
52
52
strategy :
53
53
matrix :
54
- python-version : [3.7, 3.8, 3.9]
54
+ python-version : [3.7, 3.8, 3.9, '3.10' ]
55
55
56
56
steps :
57
- - uses : actions/checkout@v2
57
+ - uses : actions/checkout@v3
58
58
- name : Set up Python ${{ matrix.python-version }}
59
- uses : actions/setup-python@v2
59
+ uses : actions/setup-python@v4
60
60
with :
61
61
python-version : ${{ matrix.python-version }}
62
62
- name : Install build dependencies
71
71
run : |
72
72
pytest -sv --doctest-modules pydra/tasks/$SUBPACKAGE \
73
73
--cov pydra.tasks.$SUBPACKAGE --cov-report xml
74
- - uses : codecov/codecov-action@v1
74
+ - uses : codecov/codecov-action@v3
75
75
if : ${{ always() }}
76
76
77
77
@@ -82,12 +82,12 @@ jobs:
82
82
matrix :
83
83
python-version : [3.9]
84
84
steps :
85
- - uses : actions/checkout@v2
85
+ - uses : actions/checkout@v3
86
86
with :
87
87
submodules : recursive
88
88
fetch-depth : 0
89
89
- name : Set up Python ${{ matrix.python-version }}
90
- uses : actions/setup-python@v2
90
+ uses : actions/setup-python@v4
91
91
with :
92
92
python-version : ${{ matrix.python-version }}
93
93
- name : Install build tools
96
96
run : python -m build
97
97
- name : Check distributions
98
98
run : twine check dist/*
99
- - uses : actions/upload-artifact@v2
99
+ - uses : actions/upload-artifact@v3
100
100
with :
101
101
name : distributions
102
102
path : dist/
0 commit comments