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

add types-PyYAML, mypy ignore_missing: +fire

This commit is contained in:
Dmitry Belyaev 2022-06-04 00:11:14 +03:00
parent 2f3a87f25f
commit 5b4dca0ab9
Signed by: b4tman
GPG Key ID: 41A00BF15EA7E5F3
2 changed files with 921 additions and 907 deletions

14
poetry.lock generated
View File

@ -520,6 +520,14 @@ category = "dev"
optional = false
python-versions = "*"
[[package]]
name = "types-pyyaml"
version = "6.0.8"
description = "Typing stubs for PyYAML"
category = "dev"
optional = false
python-versions = "*"
[[package]]
name = "typing-extensions"
version = "4.2.0"
@ -564,7 +572,7 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-
[metadata]
lock-version = "1.1"
python-versions = "^3.7"
content-hash = "c57efb5c610005cc3b90b97a42e8044a37c41864ee3f7e5c75a028570d645323"
content-hash = "9c208869eb6b3f63bb11d148d1d3226aea2e25cc52bd92517203247639eace05"
[metadata.files]
atomicwrites = [
@ -888,6 +896,10 @@ types-pytz = [
{file = "types-pytz-2021.3.8.tar.gz", hash = "sha256:41253a3a2bf028b6a3f17b58749a692d955af0f74e975de94f6f4d2d3cd01dbd"},
{file = "types_pytz-2021.3.8-py3-none-any.whl", hash = "sha256:aef4a917ab28c585d3f474bfce4f4b44b91e95d9d47d4de29dd845e0db8e3910"},
]
types-pyyaml = [
{file = "types-PyYAML-6.0.8.tar.gz", hash = "sha256:d9495d377bb4f9c5387ac278776403eb3b4bb376851025d913eea4c22b4c6438"},
{file = "types_PyYAML-6.0.8-py3-none-any.whl", hash = "sha256:56a7b0e8109602785f942a11ebfbd16e97d5d0e79f5fbb077ec4e6a0004837ff"},
]
typing-extensions = [
{file = "typing_extensions-4.2.0-py3-none-any.whl", hash = "sha256:6657594ee297170d19f67d55c05852a874e7eb634f4f753dbd667855e07c1708"},
{file = "typing_extensions-4.2.0.tar.gz", hash = "sha256:f1c24655a0da0d1b67f07e17a5e6b2a105894e6824b92096378bb3668ef02376"},

View File

@ -33,6 +33,7 @@ black = "^22.3.0"
mypy = ">=0.960"
types-python-dateutil = "^2.8.17"
types-pytz = ">=2021.3.8"
types-PyYAML = "^6.0.8"
[tool.poetry.scripts]
sync-ics2gcal = "sync_ics2gcal.sync_calendar:main"
@ -46,7 +47,8 @@ build-backend = "poetry.core.masonry.api"
module = [
'icalendar',
'google.*',
'googleapiclient'
'googleapiclient',
'fire'
]
ignore_missing_imports = true