Skip to content

Commit 7fb0c7f

Browse files
authored
📌 upgrade scipy to 1.15.3 (#516)
2 parents edfa7d7 + 7e356aa commit 7fb0c7f

File tree

4 files changed

+53
-53
lines changed

4 files changed

+53
-53
lines changed

‎pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
55

66
[project]
77
name = "scipy-stubs"
8-
version = "1.15.2.3.dev0"
8+
version = "1.15.3.0.dev0"
99
description = "Type annotations for SciPy"
1010
readme = "README.md"
1111
authors = [
@@ -34,7 +34,7 @@ requires-python = ">=3.10"
3434
dependencies = ["optype>=0.9.3"]
3535

3636
[project.optional-dependencies]
37-
scipy = ["scipy>=1.15.2,<1.16"]
37+
scipy = ["scipy>=1.15.3,<1.16"]
3838

3939
[project.urls]
4040
Homepage = "https://scipy.org/"

‎scipy-stubs/sparse/linalg/_eigen/arpack/arpack.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ _Mode: TypeAlias = Literal["normal", "buckling", "cayley"]
2121
###
2222

2323
class ArpackError(RuntimeError):
24-
def __init__(self, /, info: _KT, infodict: Mapping[_KT, str] = ...) -> None: ...
24+
def __init__(self, /, info: _KT, infodict: Mapping[_KT, str] | None = None) -> None: ...
2525

2626
class ArpackNoConvergence(ArpackError):
2727
eigenvalues: Final[onp.Array1D[np.float64 | np.complex128]]

‎scipy-stubs/sparse/linalg/_interface.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ class _AdjointMatrixOperator(MatrixLinearOperator[_SCT_co], Generic[_SCT_co]):
275275
@property
276276
@override
277277
def dtype(self, /) -> np.dtype[_SCT_co]: ... # pyright: ignore[reportIncompatibleVariableOverride]
278-
def __init__(self, /, adjoint: LinearOperator) -> None: ...
278+
def __init__(self, /, adjoint_array: LinearOperator) -> None: ...
279279

280280
class IdentityOperator(LinearOperator[_SCT_co], Generic[_SCT_co]):
281281
@overload

0 commit comments

Comments
 (0)