From 525c83e89945a071391bdb6e024f442fbe8f3ed3 Mon Sep 17 00:00:00 2001 From: Artanicus Date: Sat, 18 Mar 2023 14:40:44 +0200 Subject: [PATCH] Record python envs as strings so that 3.10 doesn't get rounded to 3.1 --- .github/workflows/tox_testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tox_testing.yml b/.github/workflows/tox_testing.yml index 768861b3d..a396f37d4 100644 --- a/.github/workflows/tox_testing.yml +++ b/.github/workflows/tox_testing.yml @@ -12,7 +12,7 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: [3.8, 3.9, 3.10] + python-version: ["3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v1