From 08c6f887e1456a3567e456195035ade70c1c793b Mon Sep 17 00:00:00 2001 From: Lane Clark <52838144+lclarko@users.noreply.github.com> Date: Tue, 19 Oct 2021 22:22:56 -0700 Subject: [PATCH] Add Python version 3.10 to test.yml Quotes have been added around the version numbers to mitigate the Python 3.1 problem. https://github.com/actions/virtual-environments/issues/4226#issuecomment-937787327 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b515cec..fdcec00 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9] + python-version: ["3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2