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:
parent
1beff774bc
commit
3ddc486614
2
.github/workflows/pythonpackage.yml
vendored
2
.github/workflows/pythonpackage.yml
vendored
@ -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
|
||||||
|
@ -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
|
||||||
|
5
setup.py
5
setup.py
@ -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',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user