Skip to content

Commit d7f3eeb

Browse files
authored
Test Python 3.9 (#51)
1 parent 76e491c commit d7f3eeb

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ jobs:
4545
runs-on: ubuntu-latest
4646

4747
steps:
48-
- uses: actions/checkout@v1
48+
- uses: actions/checkout@v2
4949
with:
5050
fetch-depth: 50
5151
submodules: true
5252

5353
- name: Set up Python 3.7
54-
uses: actions/setup-python@v1
54+
uses: actions/setup-python@v2
5555
with:
5656
python-version: 3.7
5757

@@ -70,7 +70,7 @@ jobs:
7070
runs-on: ${{ matrix.os }}
7171
strategy:
7272
matrix:
73-
python-version: [3.5, 3.6, 3.7, 3.8]
73+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
7474
os: [ubuntu-16.04, macos-latest, windows-latest]
7575
exclude:
7676
# Python 3.5 is unable to properly
@@ -80,13 +80,13 @@ jobs:
8080
python-version: 3.5
8181

8282
steps:
83-
- uses: actions/checkout@v1
83+
- uses: actions/checkout@v2
8484
with:
8585
fetch-depth: 50
8686
submodules: true
8787

8888
- name: Set up Python ${{ matrix.python-version }}
89-
uses: actions/setup-python@v1
89+
uses: actions/setup-python@v2
9090
with:
9191
python-version: ${{ matrix.python-version }}
9292

@@ -130,7 +130,7 @@ jobs:
130130
runs-on: ubuntu-latest
131131

132132
steps:
133-
- uses: actions/checkout@v1
133+
- uses: actions/checkout@v2
134134
with:
135135
fetch-depth: 5
136136
submodules: false

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
max-parallel: 4
1717
matrix:
18-
python-version: [3.5, 3.6, 3.7, 3.8]
18+
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
1919
os: [windows-latest, ubuntu-18.04, macos-latest]
2020
exclude:
2121
# Python 3.5 is unable to properly
@@ -25,7 +25,7 @@ jobs:
2525
python-version: 3.5
2626

2727
steps:
28-
- uses: actions/checkout@v1
28+
- uses: actions/checkout@v2
2929
with:
3030
fetch-depth: 50
3131
submodules: true
@@ -41,7 +41,7 @@ jobs:
4141
__version__\s*=\s*(?:['"])([[:PEP440:]])(?:['"])
4242
4343
- name: Set up Python ${{ matrix.python-version }}
44-
uses: actions/setup-python@v1
44+
uses: actions/setup-python@v2
4545
if: steps.release.outputs.version == 0
4646
with:
4747
python-version: ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
'Programming Language :: Python :: 3.6',
6060
'Programming Language :: Python :: 3.7',
6161
'Programming Language :: Python :: 3.8',
62+
'Programming Language :: Python :: 3.9',
6263
'Operating System :: POSIX',
6364
'Operating System :: MacOS :: MacOS X',
6465
'Operating System :: Microsoft :: Windows',

0 commit comments

Comments
 (0)