mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-04 20:45:49 +08:00
[dateparser] Update to 1.4.0 (#15562)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
version = "~=1.3.0"
|
||||
version = "~=1.4.0"
|
||||
upstream_repository = "https://github.com/scrapinghub/dateparser"
|
||||
|
||||
[tool.stubtest]
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
import re
|
||||
from collections.abc import Generator
|
||||
from datetime import datetime, timedelta, tzinfo
|
||||
from pathlib import Path
|
||||
from typing import Final, TypeVar
|
||||
from typing import TypeVar
|
||||
|
||||
_DateTimeT = TypeVar("_DateTimeT", bound=datetime)
|
||||
|
||||
@@ -21,6 +20,3 @@ def build_tz_offsets(search_regex_parts: list[str]) -> Generator[tuple[str, dict
|
||||
def get_local_tz_offset() -> timedelta: ...
|
||||
|
||||
local_tz_offset: timedelta
|
||||
|
||||
CACHE_PATH: Final[Path]
|
||||
current_hash: int | None
|
||||
|
||||
Reference in New Issue
Block a user