Skip to content

Commit 8531e42

Browse files
authored
Mark support for python 3.9 (#153)
1 parent e52d0e4 commit 8531e42

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ name: Test
22

33
on:
44
push:
5-
branches: [ '*' ]
5+
branches: ['*']
66
pull_request:
7-
branches: [ '*' ]
7+
branches: ['*']
88

99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212

1313
strategy:
1414
matrix:
15-
python-version: ['3.5', '3.6', '3.7', '3.8', 'pypy3']
15+
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', 'pypy3']
1616

1717
steps:
1818
- uses: actions/checkout@v2

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"Programming Language :: Python :: 3.6",
4747
"Programming Language :: Python :: 3.7",
4848
"Programming Language :: Python :: 3.8",
49+
"Programming Language :: Python :: 3.9",
4950
"Topic :: Utilities",
5051
"Topic :: System"
5152
]

0 commit comments

Comments
 (0)