From 957ebcbc9395c3115e7aa993c2085c36665dcacf Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Fri, 23 Sep 2022 06:32:22 +0200 Subject: [PATCH] CI: python-version should be a string, not a float This shows clearly with '3.10' which is different from '3.1'. --- .github/workflows/tox.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index c7642ac0..aed9cb07 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: os: ['ubuntu-latest'] - python-version: [3.7, 3.8, 3.9, '3.10', 'pypy3.9'] + python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy3.9'] shell: ['bash'] include: - os: 'windows-latest'