_version.pyi 633 B

1234567891011121314151617
  1. __all__: list[str]
  2. class NumpyVersion:
  3. vstring: str
  4. version: str
  5. major: int
  6. minor: int
  7. bugfix: int
  8. pre_release: str
  9. is_devversion: bool
  10. def __init__(self, vstring: str) -> None: ...
  11. def __lt__(self, other: str | NumpyVersion) -> bool: ...
  12. def __le__(self, other: str | NumpyVersion) -> bool: ...
  13. def __eq__(self, other: str | NumpyVersion) -> bool: ... # type: ignore[override]
  14. def __ne__(self, other: str | NumpyVersion) -> bool: ... # type: ignore[override]
  15. def __gt__(self, other: str | NumpyVersion) -> bool: ...
  16. def __ge__(self, other: str | NumpyVersion) -> bool: ...