[pyRFC3339] Remove as it ships py.typed file (#15455)

This commit is contained in:
github-actions[bot]
2026-02-23 07:43:52 +01:00
committed by GitHub
parent 24827c4590
commit 6ee36bacec
5 changed files with 0 additions and 14 deletions
-3
View File
@@ -1,3 +0,0 @@
version = "~=2.0.1"
upstream_repository = "https://github.com/kurtraschke/pyRFC3339"
obsolete_since = "2.1.0" # Released on 2025-08-23
-4
View File
@@ -1,4 +0,0 @@
from .generator import generate as generate
from .parser import parse as parse
__all__ = ["generate", "parse"]
-3
View File
@@ -1,3 +0,0 @@
from datetime import datetime
def generate(dt: datetime, utc: bool = True, accept_naive: bool = False, microseconds: bool = False) -> str: ...
-3
View File
@@ -1,3 +0,0 @@
from datetime import datetime
def parse(timestamp: str, utc: bool = False, produce_naive: bool = False) -> datetime: ...
-1
View File
@@ -1 +0,0 @@
def format_timezone(utcoffset: int) -> str: ...