Skip to content

Commit 20f2ea5

Browse files
authored
📝 update scipy generics support (#695)
2 parents b5fe56f + 63030a3 commit 20f2ea5

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

README.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -170,14 +170,14 @@ See the `scipy` columns below for which classes are subscriptable at runtime.
170170

171171
### `scipy.integrate`
172172

173-
| generic type | `scipy-stubs` | `scipy` | |
174-
| ------------------------ | ------------- | ------- | --------------------------------------------------------------------------------------------- |
175-
| `BDF[T: f64 \| c128]` | `>=1.14.0.1` | :x: | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.BDF.html) |
176-
| `DOP853[T: f64 \| c128]` | `>=1.14.0.1` | :x: | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.DOP853.html) |
177-
| `RK23[T: f64 \| c128]` | `>=1.14.0.1` | :x: | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.RK23.html) |
178-
| `RK45[T: f64 \| c128]` | `>=1.14.0.1` | :x: | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.RK45.html) |
179-
| `ode[*ArgTs]` | `>=1.14.0.0` | :x: | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.ode.html) |
180-
| `complex_ode[*ArgTs]` | `>=1.14.0.0` | :x: | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.complex_ode.html) |
173+
| generic type | `scipy-stubs` | `scipy` | |
174+
| ------------------------ | ------------- | -------- | --------------------------------------------------------------------------------------------- |
175+
| `BDF[T: f64 \| c128]` | `>=1.14.0.1` | `>=1.17` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.BDF.html) |
176+
| `DOP853[T: f64 \| c128]` | `>=1.14.0.1` | `>=1.17` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.DOP853.html) |
177+
| `RK23[T: f64 \| c128]` | `>=1.14.0.1` | `>=1.17` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.RK23.html) |
178+
| `RK45[T: f64 \| c128]` | `>=1.14.0.1` | `>=1.17` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.RK45.html) |
179+
| `ode[*ArgTs]` | `>=1.14.0.0` | `>=1.17` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.ode.html) |
180+
| `complex_ode[*ArgTs]` | `>=1.14.0.0` | `>=1.17` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.complex_ode.html) |
181181

182182
### `scipy.interpolate`
183183

@@ -242,23 +242,23 @@ See the `scipy` columns below for which classes are subscriptable at runtime.
242242

243243
#### `scipy.sparse.linalg`
244244

245-
| generic type | `scipy-stubs` | `scipy` | |
246-
| --------------------------- | ------------- | ------- | ---------------------------------------------------------------------------------------------------- |
247-
| `LaplacianNd[T: real]` | `>=1.14.1.6` | :x: | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.linalg.LaplacianNd.html) |
248-
| `LinearOperator[T: scalar]` | `>=1.14.1.6` | :x: | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.linalg.LinearOperator.html) |
249-
| `SuperLU[T: inexact]` | `>=1.16.0.1` | :x: | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.linalg.SuperLU.html) |
245+
| generic type | `scipy-stubs` | `scipy` | |
246+
| --------------------------- | ------------- | -------- | ---------------------------------------------------------------------------------------------------- |
247+
| `LaplacianNd[T: real]` | `>=1.14.1.6` | `>=1.17` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.linalg.LaplacianNd.html) |
248+
| `LinearOperator[T: scalar]` | `>=1.14.1.6` | `>=1.17` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.linalg.LinearOperator.html) |
249+
| `SuperLU[T: inexact]` | `>=1.16.0.1` | `>=1.17` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.sparse.linalg.SuperLU.html) |
250250

251251
### `scipy.stats`
252252

253-
| generic type | `scipy-stubs` | `scipy` | |
254-
| ---------------------------------------------- | ------------- | ------- | ---------------------------------------------------------------------------------------- |
255-
| `Covariance[T: real]` | `>=1.14.0.0` | :x: | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.Covariance.html) |
256-
| `Uniform[S: (int, ...), T: floating]` | `>=1.15.0.0` | :x: | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.Uniform.html) |
257-
| `Normal[S: (int, ...), T: floating]` | `>=1.15.0.0` | :x: | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.Normal.html) |
258-
| `Binomial[S: (int, ...), T: floating]` | `>=1.16.0.0` | :x: | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.Binomial.html) |
259-
| `Mixture[T: floating]` | `>=1.15.0.0` | :x: | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.Mixture.html) |
260-
| `rv_frozen[D: rv_generic, T: scalar or array]` | `>=1.14.0.0` | :x: | |
261-
| `multi_rv_frozen[D: rv_generic]` | `>=1.14.0.0` | :x: | |
253+
| generic type | `scipy-stubs` | `scipy` | |
254+
| ---------------------------------------------- | ------------- | -------- | ---------------------------------------------------------------------------------------- |
255+
| `Covariance[T: real]` | `>=1.14.0.0` | `>=1.17` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.Covariance.html) |
256+
| `Uniform[S: (int, ...), T: floating]` | `>=1.15.0.0` | `>=1.17` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.Uniform.html) |
257+
| `Normal[S: (int, ...), T: floating]` | `>=1.15.0.0` | `>=1.17` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.Normal.html) |
258+
| `Binomial[S: (int, ...), T: floating]` | `>=1.16.0.0` | `>=1.17` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.Binomial.html) |
259+
| `Mixture[T: floating]` | `>=1.15.0.0` | `>=1.17` | [docs](https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.Mixture.html) |
260+
| `rv_frozen[D: rv_generic, T: scalar or array]` | `>=1.14.0.0` | `>=1.17` | |
261+
| `multi_rv_frozen[D: rv_generic]` | `>=1.14.0.0` | `>=1.17` | |
262262

263263
## Contributing
264264

0 commit comments

Comments
 (0)