ref: Python 3.9 is EOL, require Python 3.10

This commit is contained in:
scito
2026-03-08 08:50:59 +01:00
committed by Roland Kurmann
parent da25bd34a7
commit d96879011b
10 changed files with 441 additions and 731 deletions

View File

@@ -23,12 +23,11 @@ import re
import shutil
import sys
import pathlib
from typing import BinaryIO, Any, Union, List
from typing import BinaryIO, Any, List
# Types
# workaround for PYTHON <= 3.9: Workaround for str | pathlib.Path
PathLike = Union[str, pathlib.Path]
PathLike = str | pathlib.Path
# Ref. https://stackoverflow.com/a/16571630