Skip to content

Commit 1d1b1c2

Browse files
CI: python-version should be a string, not a float
1 parent 75796d5 commit 1d1b1c2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/contrib.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
matrix:
3434
os: ['ubuntu-latest']
35-
python-version: [3.8]
35+
python-version: ['3.8']
3636
nipype-extras: ['dev']
3737
check: ['specs', 'style']
3838
env:

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,15 @@ jobs:
9191
strategy:
9292
matrix:
9393
os: ['ubuntu-20.04']
94-
python-version: [3.7, 3.8, 3.9, "3.10"]
94+
python-version: ['3.7', '3.8', '3.9', '3.10']
9595
check: ['test']
9696
pip-flags: ['']
9797
depends: ['REQUIREMENTS']
9898
deb-depends: [false]
9999
nipype-extras: ['doc,tests,profiler']
100100
include:
101101
- os: ubuntu-20.04
102-
python-version: 3.8
102+
python-version: '3.8'
103103
check: test
104104
pip-flags: ''
105105
depends: REQUIREMENTS

0 commit comments

Comments
 (0)