From 34710ea7c3052eb08972300142890d578a6b0085 Mon Sep 17 00:00:00 2001 From: Peter Law Date: Wed, 16 Nov 2022 09:45:32 +0000 Subject: [PATCH] Treat Python versions as strings They're not floats, which YAML would try to treat them as by default. --- .github/workflows/python-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 8aa3a50..14acf96 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9, 3.10, 3.11] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v2