From 9ae48fecfea55384e4a5c35b4fb9f577a750e5f5 Mon Sep 17 00:00:00 2001 From: Bibo-Joshi Date: Sun, 11 Oct 2020 11:47:19 +0200 Subject: [PATCH] Add Python 3.9 to Test Matrix (#2132) * Add Py 3.9 to tests * update setup-python action --- .github/workflows/test.yml | 4 ++-- setup.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6cbab4501..8437755bc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ jobs: runs-on: ${{matrix.os}} strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.6, 3.7, 3.8, 3.9] os: [ubuntu-latest, windows-latest] include: - os: ubuntu-latest @@ -31,7 +31,7 @@ jobs: run: git submodule update --init --recursive - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/setup.py b/setup.py index 2f5243123..08dfe8ef1 100644 --- a/setup.py +++ b/setup.py @@ -64,4 +64,5 @@ with codecs.open('README.rst', 'r', 'utf-8') as fd: 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', ],)