1
0
mirror of https://github.com/b4tman/sync_ics2gcal synced 2025-01-21 07:28:24 +00:00

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: strategy:
max-parallel: 4 max-parallel: 4
matrix: matrix:
python-version: [3.6, 3.7, 3.8] python-version: [3.6, 3.7, 3.8, 3.9]
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1

View File

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

View File

@ -24,9 +24,10 @@ setuptools.setup(
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', '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 = [ install_requires = [
'google-auth>=1.5.0', 'google-auth>=1.5.0',
'google-api-python-client>=1.7.0', 'google-api-python-client>=1.7.0',