Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stubs/dateparser/METADATA.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "~=1.3.0"
version = "~=1.4.0"
upstream_repository = "https://github.com/scrapinghub/dateparser"

[tool.stubtest]
Expand Down
6 changes: 1 addition & 5 deletions stubs/dateparser/dateparser/timezone_parser.pyi
Original file line number Diff line number Diff line change
@@ -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)

Expand All @@ -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
Loading