From 7fb314339f74d020b5b03ef0ba2d0691a5fa1654 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 7 Oct 2020 18:33:14 +0200 Subject: [PATCH] test: GitHub Actions: Test on Python 3.9 From python: [3.6, 3.7, 3.8] --> python: [3.6, 3.8, 3.9] because if things work on Python 3.6 and 3.8 then they should work on 3.7. https://www.python.org/downloads/release/python-390/ PR-URL: https://github.com/nodejs/node-gyp/pull/2230 Reviewed-By: Shelley Vohr Reviewed-By: Richard Lau --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 729a8f05e9..651b1a9f49 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: max-parallel: 15 matrix: node: [10.x, 12.x, 14.x] - python: [3.6, 3.7, 3.8] + python: [3.6, 3.8, 3.9] os: [macos-latest, ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: