From 8c9451154e7f24b997892dc82bb4326531e165a6 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Fri, 28 Mar 2025 19:10:16 -0700 Subject: [PATCH] icalendar: update (#13737) Fixes #13735 --- stubs/icalendar/METADATA.toml | 2 +- stubs/icalendar/icalendar/timezone/tzid.pyi | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/stubs/icalendar/METADATA.toml b/stubs/icalendar/METADATA.toml index 2892a10d6..2a7b8178f 100644 --- a/stubs/icalendar/METADATA.toml +++ b/stubs/icalendar/METADATA.toml @@ -1,4 +1,4 @@ -version = "~= 6.1.2" +version = "6.1.3" upstream_repository = "https://github.com/collective/icalendar" requires = ["types-python-dateutil", "types-pytz"] diff --git a/stubs/icalendar/icalendar/timezone/tzid.pyi b/stubs/icalendar/icalendar/timezone/tzid.pyi index c70bc41cf..1e5b884c9 100644 --- a/stubs/icalendar/icalendar/timezone/tzid.pyi +++ b/stubs/icalendar/icalendar/timezone/tzid.pyi @@ -5,4 +5,3 @@ __all__ = ["tzid_from_tzinfo", "tzid_from_dt", "tzids_from_tzinfo"] def tzids_from_tzinfo(tzinfo: datetime.tzinfo | None) -> tuple[str, ...]: ... def tzid_from_tzinfo(tzinfo: datetime.tzinfo | None) -> str | None: ... def tzid_from_dt(dt: datetime.datetime) -> str | None: ... -def tzinfo2tzids(tzinfo: datetime.tzinfo | None) -> set[str]: ...