From 1d1b1c2a1457806cce1edab00f61dbebb08a1881 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Tue, 27 Sep 2022 12:05:30 +0200 Subject: [PATCH] CI: python-version should be a string, not a float --- .github/workflows/contrib.yml | 2 +- .github/workflows/tests.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/contrib.yml b/.github/workflows/contrib.yml index a4ec6d7d75..621a637c53 100644 --- a/.github/workflows/contrib.yml +++ b/.github/workflows/contrib.yml @@ -32,7 +32,7 @@ jobs: strategy: matrix: os: ['ubuntu-latest'] - python-version: [3.8] + python-version: ['3.8'] nipype-extras: ['dev'] check: ['specs', 'style'] env: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fee8740987..b3c3bdc4f5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -91,7 +91,7 @@ jobs: strategy: matrix: os: ['ubuntu-20.04'] - python-version: [3.7, 3.8, 3.9, "3.10"] + python-version: ['3.7', '3.8', '3.9', '3.10'] check: ['test'] pip-flags: [''] depends: ['REQUIREMENTS'] @@ -99,7 +99,7 @@ jobs: nipype-extras: ['doc,tests,profiler'] include: - os: ubuntu-20.04 - python-version: 3.8 + python-version: '3.8' check: test pip-flags: '' depends: REQUIREMENTS