From 3c942defb5c49eef0fcf155204acda71da721cdf Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Thu, 3 Dec 2020 23:59:45 +0800 Subject: [PATCH 1/2] Also add Python v3.6, v3.8 on GitHub Actions for test Unlike Python v2 as v2.7 is 10 years old, Python v3 has more versions alive amoung us, it'll be great if they will all be tested. --- .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 f8b37ef..479464f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [2.7, 3.7, 3.9] + python-version: [2.7, 3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@master - name: Setup python From ac0aeef54fcf525c8fcab1b14917b95a313fa499 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Fri, 4 Dec 2020 06:59:08 -0800 Subject: [PATCH 2/2] Link to python vesrion EOL dates --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 479464f..0f62f96 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,6 +6,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: + # Tested versions based on dates in https://devguide.python.org/devcycle/#end-of-life-branches, + # with the addition of 2.7 b/c it's still if pretty wide active use. python-version: [2.7, 3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@master