[dateparser] Update to 1.4.0 (#15562)

This commit is contained in:
Brian Schubert
2026-03-27 02:59:52 -04:00
committed by GitHub
parent 07f0b07dd4
commit 5a5912bd0c
2 changed files with 2 additions and 6 deletions
+1 -1
View File
@@ -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