We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6af6648 commit 9ae48feCopy full SHA for 9ae48fe
2 files changed
.github/workflows/test.yml
@@ -15,7 +15,7 @@ jobs:
15
runs-on: ${{matrix.os}}
16
strategy:
17
matrix:
18
- python-version: [3.6, 3.7, 3.8]
+ python-version: [3.6, 3.7, 3.8, 3.9]
19
os: [ubuntu-latest, windows-latest]
20
include:
21
- os: ubuntu-latest
@@ -31,7 +31,7 @@ jobs:
31
run:
32
git submodule update --init --recursive
33
- name: Set up Python ${{ matrix.python-version }}
34
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
35
with:
36
python-version: ${{ matrix.python-version }}
37
- name: Install dependencies
setup.py
@@ -64,4 +64,5 @@ def requirements():
64
'Programming Language :: Python :: 3.6',
65
'Programming Language :: Python :: 3.7',
66
'Programming Language :: Python :: 3.8',
67
+ 'Programming Language :: Python :: 3.9',
68
],)
0 commit comments