From da39acba837134028673b66bd0eaa90127ce8d16 Mon Sep 17 00:00:00 2001 From: "Leonides T. Saguisag, Jr" Date: Mon, 11 Oct 2021 01:26:32 -0700 Subject: [PATCH] Try to fix issue with testing w/ Py3.10. --- .github/workflows/python-app.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index a4ebf3f..b787423 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -15,7 +15,16 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [2.7, pypy-2.7, 3.6, 3.7, 3.8, 3.9, 3.10, pypy-3.6, pypy-3.7] + python-version: + - '2.7' + - 'pypy-2.7' + - '3.6' + - 'pypy-3.6' + - '3.7' + - 'pypy-3.7' + - '3.8' + - '3.9' + - '3.10' steps: - uses: actions/checkout@v2