From 10e2f65c7d51f14beccd06502a8bdd40277623ab Mon Sep 17 00:00:00 2001 From: Zane Selvans Date: Fri, 13 Oct 2023 19:21:24 -0600 Subject: [PATCH] Use strings for python versions in tox-pytest workflow matrix. --- .github/workflows/tox-pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tox-pytest.yml b/.github/workflows/tox-pytest.yml index cb8db83..0c93957 100644 --- a/.github/workflows/tox-pytest.yml +++ b/.github/workflows/tox-pytest.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.6, 3.7, 3.8, 3.9, 3.10, 3.11] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v2