From eb46c2d809a9321a0e878505aa7322a5da904121 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Wed, 5 Jan 2022 16:04:56 +0000 Subject: [PATCH] CI should just use Python 3.9, not "3.9.5" (#2010) --- .github/workflows/test-suite.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 836ac372..86b4a03d 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9.5", "3.10"] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] steps: - uses: "actions/checkout@v2"