Skip to content

Commit 5a5912b

Browse files
[dateparser] Update to 1.4.0 (#15562)
1 parent 07f0b07 commit 5a5912b

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

stubs/dateparser/METADATA.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "~=1.3.0"
1+
version = "~=1.4.0"
22
upstream_repository = "https://github.com/scrapinghub/dateparser"
33

44
[tool.stubtest]

stubs/dateparser/dateparser/timezone_parser.pyi

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import re
22
from collections.abc import Generator
33
from datetime import datetime, timedelta, tzinfo
4-
from pathlib import Path
5-
from typing import Final, TypeVar
4+
from typing import TypeVar
65

76
_DateTimeT = TypeVar("_DateTimeT", bound=datetime)
87

@@ -21,6 +20,3 @@ def build_tz_offsets(search_regex_parts: list[str]) -> Generator[tuple[str, dict
2120
def get_local_tz_offset() -> timedelta: ...
2221

2322
local_tz_offset: timedelta
24-
25-
CACHE_PATH: Final[Path]
26-
current_hash: int | None

0 commit comments

Comments
 (0)