11
11
import tarfile
12
12
import tempfile
13
13
import textwrap
14
- import typing
14
+ from collections . abc import Iterable , Iterator , Mapping , Sequence
15
15
from datetime import datetime , timezone
16
16
17
17
import click
33
33
34
34
def download_tzdb_tarballs (
35
35
version : str , base_url : str = SOURCE , working_dir : pathlib .Path = WORKING_DIR
36
- ) -> typing . List [pathlib .Path ]:
36
+ ) -> Sequence [pathlib .Path ]:
37
37
"""Download the tzdata and tzcode tarballs."""
38
38
tzdata_file = f"tzdata{ version } .tar.gz"
39
39
tzcode_file = f"tzcode{ version } .tar.gz"
@@ -63,7 +63,7 @@ def download_tzdb_tarballs(
63
63
64
64
def retrieve_local_tarballs (
65
65
version : str , source_dir : pathlib .Path , working_dir : pathlib .Path = WORKING_DIR
66
- ) -> typing . List [pathlib .Path ]:
66
+ ) -> Sequence [pathlib .Path ]:
67
67
"""Retrieve the tzdata and tzcode tarballs from a folder.
68
68
69
69
This is useful when building against a local, patched version of tzdb.
@@ -92,7 +92,9 @@ def retrieve_local_tarballs(
92
92
return dest_locations
93
93
94
94
95
- def unpack_tzdb_tarballs (download_locations : typing .List [pathlib .Path ]) -> pathlib .Path :
95
+ def unpack_tzdb_tarballs (
96
+ download_locations : Sequence [pathlib .Path ],
97
+ ) -> pathlib .Path :
96
98
assert len (download_locations ) == 2
97
99
assert download_locations [0 ].parent == download_locations [1 ].parent
98
100
base_dir = download_locations [0 ].parent .parent
@@ -117,7 +119,7 @@ def unpack_tzdb_tarballs(download_locations: typing.List[pathlib.Path]) -> pathl
117
119
118
120
def load_zonefiles (
119
121
base_dir : pathlib .Path ,
120
- ) -> typing . Tuple [ typing . List [str ], pathlib .Path ]:
122
+ ) -> tuple [ Sequence [str ], pathlib .Path ]:
121
123
target_dir = base_dir .parent / "zoneinfo"
122
124
if target_dir .exists ():
123
125
shutil .rmtree (target_dir )
@@ -144,9 +146,7 @@ def load_zonefiles(
144
146
return zonenames , target_dir
145
147
146
148
147
- def create_package (
148
- version : str , zonenames : typing .List [str ], zoneinfo_dir : pathlib .Path
149
- ):
149
+ def create_package (version : str , zonenames : Sequence [str ], zoneinfo_dir : pathlib .Path ):
150
150
"""Creates the tzdata package."""
151
151
# Start out at rc0
152
152
base_version = parver .Version .parse (translate_version (version ))
@@ -249,7 +249,7 @@ def translate_version(iana_version: str) -> str:
249
249
class NewsEntry :
250
250
version : str
251
251
release_date : datetime
252
- categories : typing . Mapping [str , str ]
252
+ categories : Mapping [str , str ]
253
253
254
254
def to_file (self ) -> None :
255
255
fpath = pathlib .Path ("news.d" ) / (self .version + ".md" )
@@ -286,8 +286,8 @@ def get_indent(s: str) -> int:
286
286
287
287
288
288
def read_block (
289
- lines : typing . Iterator [str ],
290
- ) -> typing . Tuple [ typing . Sequence [str ], typing . Iterator [str ]]:
289
+ lines : Iterator [str ],
290
+ ) -> tuple [ Sequence [str ], Iterator [str ]]:
291
291
lines , peek = itertools .tee (lines )
292
292
while not (first_line := next (peek )):
293
293
next (lines )
@@ -322,7 +322,7 @@ def read_block(
322
322
return block , lines
323
323
324
324
325
- def parse_categories (news_block : typing . Sequence [str ]) -> typing . Mapping [str , str ]:
325
+ def parse_categories (news_block : Sequence [str ]) -> Mapping [str , str ]:
326
326
blocks = iter (news_block )
327
327
328
328
output = {}
@@ -341,7 +341,7 @@ def parse_categories(news_block: typing.Sequence[str]) -> typing.Mapping[str, st
341
341
342
342
# Merge the contents into paragraphs by grouping into consecutive blocks
343
343
# of non-empty lines, then joining those lines on a newline.
344
- content_paragraphs : typing . Iterable [str ] = (
344
+ content_paragraphs : Iterable [str ] = (
345
345
"\n " .join (paragraph )
346
346
for _ , paragraph in itertools .groupby (content_lines , key = bool )
347
347
)
@@ -365,7 +365,7 @@ def parse_categories(news_block: typing.Sequence[str]) -> typing.Mapping[str, st
365
365
return output
366
366
367
367
368
- def read_news (tzdb_loc : pathlib .Path , version : str = None ) -> NewsEntry :
368
+ def read_news (tzdb_loc : pathlib .Path , version : str | None = None ) -> NewsEntry :
369
369
release_re = re .compile ("^Release (?P<version>\d{4}[a-z]) - (?P<date>.*$)" )
370
370
with open (tzdb_loc / "NEWS" , "rt" ) as f :
371
371
f_lines = map (str .rstrip , f )
@@ -427,9 +427,9 @@ def update_news(news_entry: NewsEntry):
427
427
help = "Flag to disable data updates and only update the news entry" ,
428
428
)
429
429
def main (
430
- version : typing . Optional [ str ] ,
430
+ version : str | None ,
431
431
news_only : bool ,
432
- source_dir : typing . Optional [ pathlib .Path ] ,
432
+ source_dir : pathlib .Path | None ,
433
433
):
434
434
logging .basicConfig (level = logging .INFO )
435
435
0 commit comments