drop python 3.7 support

for TypedDict
This commit is contained in:
Dmitry Belyaev 2022-06-04 15:56:11 +03:00
parent 1eef4114cd
commit bfdeaa17ff
Signed by: b4tman
GPG Key ID: 41A00BF15EA7E5F3
2 changed files with 2 additions and 3 deletions

View File

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

View File

@ -11,14 +11,13 @@ keywords = ["icalendar", "sync", "google", "calendar"]
classifiers = [
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
google-auth = "2.6.6"
google-api-python-client = "2.49.0"
icalendar = "4.0.9"