Drop Python 3.8 branches (#13776)

This commit is contained in:
Sebastian Rittau
2025-04-03 10:35:36 +02:00
committed by GitHub
parent 1e43190554
commit 30b16c168d
117 changed files with 1023 additions and 2639 deletions
+1 -3
View File
@@ -98,9 +98,7 @@ class NormalDist:
def inv_cdf(self, p: float) -> float: ...
def overlap(self, other: NormalDist) -> float: ...
def quantiles(self, n: int = 4) -> list[float]: ...
if sys.version_info >= (3, 9):
def zscore(self, x: float) -> float: ...
def zscore(self, x: float) -> float: ...
def __eq__(x1, x2: object) -> bool: ...
def __add__(x1, x2: float | NormalDist) -> NormalDist: ...
def __sub__(x1, x2: float | NormalDist) -> NormalDist: ...