add Python 3.9 support

This commit is contained in:
Dmitry Belyaev 2021-01-01 13:34:04 +03:00 committed by Dmitry Belyaev
parent 1beff774bc
commit 3ddc486614
3 changed files with 6 additions and 4 deletions

View File

@ -17,7 +17,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v1

View File

@ -3,7 +3,8 @@ language: python
python:
- "3.6"
- "3.7"
- "3.8"
- "3.8"
- "3.9"
script:
- pytest -v

View File

@ -24,9 +24,10 @@ setuptools.setup(
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
python_requires='>=3.5',
python_requires='>=3.6',
install_requires = [
'google-auth>=1.5.0',
'google-api-python-client>=1.7.0',