From 784e76d743ef299b7c5c9f50e965e12bcfc9ac49 Mon Sep 17 00:00:00 2001 From: John Belmonte Date: Thu, 1 Oct 2020 11:32:19 +0900 Subject: [PATCH 1/2] add Python 3.9-rc to CI build --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b73f5d20b..0276a1ea8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - python: ['3.6', '3.7', '3.8'] + python: ['3.6', '3.7', '3.8', '3.9.0-rc.2'] arch: ['x86', 'x64'] lsp: [''] lsp_extract_file: [''] @@ -59,7 +59,7 @@ jobs: strategy: fail-fast: false matrix: - python: ['3.6', '3.7', '3.8'] + python: ['3.6', '3.7', '3.8', '3.9.0-rc.2'] check_formatting: ['0'] extra_name: [''] include: @@ -87,7 +87,7 @@ jobs: strategy: fail-fast: false matrix: - python: ['3.6', '3.7', '3.8'] + python: ['3.6', '3.7', '3.8', '3.9.0-rc.2'] steps: - name: Checkout uses: actions/checkout@v2 From 5b2d17d54e0bbb53c03f60527ad45a439725414b Mon Sep 17 00:00:00 2001 From: John Belmonte Date: Thu, 1 Oct 2020 11:51:23 +0900 Subject: [PATCH 2/2] upgrade to setup-python@v2 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0276a1ea8e..c302766fad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Setup python - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: '${{ matrix.python }}' architecture: '${{ matrix.arch }}' @@ -70,7 +70,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Setup python - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: '${{ matrix.python }}' - name: Run tests @@ -92,7 +92,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Setup python - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: '${{ matrix.python }}' - name: Run tests