Skip to content

Commit

Permalink
pyupgrade bootstrap to py39.
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianPugh committed Dec 20, 2024
1 parent c2189f6 commit 10ad605
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ from argparse import ArgumentParser
from datetime import date
from enum import Enum
from pathlib import Path
from typing import List, Union
from typing import Union

parser = ArgumentParser(description="Prepares python project repository.")
parser.add_argument("--no-verify", action="store_true", help="Disable input verification.")
Expand Down Expand Up @@ -330,7 +330,7 @@ def main():
)
else:
# Delete cython-related files
paths_to_delete: List[Union[str, Path]] = [
paths_to_delete: list[Union[str, Path]] = [
".github/workflows/build_wheels.yaml",
"build.py",
"pythontemplate/_c_src",
Expand Down

0 comments on commit 10ad605

Please sign in to comment.