-
Notifications
You must be signed in to change notification settings - Fork 25
Closed
Labels
good first issueGood for newcomersGood for newcomers
Description
The following line 6 does not work under Python 3.9 because the | notation for Union was introduced into Python typing beginning with Python 3.10.
| from typing import Sequence, TypeVar, Any | |
| from numpy.typing import NDArray as ArrayType | |
| T = TypeVar("T", bool, bytes, float, int, object, str) | |
| ArrayLike = ArrayType[Any] | Sequence[T] |
I suggest revising setup.py to require Python 3.10, 3.11, or 3.12.
MaxGhenis and martinholmer
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers