Skip to content

Commit

Permalink
Try to fix github workflow #4
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph2 committed Oct 4, 2024
1 parent a77b1f8 commit 4f1505a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 52 deletions.
4 changes: 2 additions & 2 deletions build_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import sysconfig
from pathlib import Path
from tempfile import TemporaryDirectory
from typing import Optional, Tuple
from typing import List, Optional, Tuple


TOP_DIR = Path(__file__).parent
Expand Down Expand Up @@ -94,7 +94,7 @@ def sort_by_version(version: str) -> Tuple[int]:
return int(h), int(m), int(s)


def fetch_tags(repo: str) -> list[str]:
def fetch_tags(repo: str) -> List[str]:
res = subprocess.run(["git", "ls-remote", "--tags", repo], shell=False, capture_output=True, text=True) # nosec
if res.returncode == 0:
return []
Expand Down
50 changes: 0 additions & 50 deletions install_antlr.py

This file was deleted.

0 comments on commit 4f1505a

Please sign in to comment.