From dadf16032ab2b654fbf67316cb81c200a7452e72 Mon Sep 17 00:00:00 2001 From: Miguel Angel Garcia Date: Tue, 9 Mar 2021 08:27:06 +0100 Subject: [PATCH] fix python versions on actions --- .github/workflows/python-test.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index bb18ba3..e5caf76 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -15,7 +15,14 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9] + python-version: + - "2.7.18" + - "3.4.10" + - "3.5.10" + - "3.6.13" + - "3.7.10" + - "3.8.8" + - "3.9.2" steps: - uses: actions/checkout@v2