From e083056c33775007082df3d391741c9e39212e77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Finn=20=C3=85rup=20Nielsen?= Date: Mon, 4 Apr 2022 20:09:46 +0200 Subject: [PATCH] Fix #36: Disable Python3.5 test This change add test on 3.6 and 3.10. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a29d390..1d0d3a2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: [2.7, 3.5, 3.7, 3.9] + python: [2.7, 3.6, 3.7, 3.9, 3.10] steps: - uses: actions/checkout@v2