Skip to content

jorenham/scipy-stubs

scipy-stubs

Precise type hints for all of SciPy.

scipy-stubs - PyPI scipy-stubs - conda-forge scipy-stubs - Python Versions scipy-stubs - license

scipy-stubs - CI scipy-stubs - pre-commit scipy-stubs - basedmypy scipy-stubs - basedpyright scipy-stubs - ruff


Highlights

  • Works out-of-the-box
  • Improves IDE suggestions and autocompletion
    • ... even if you don't use static typing in your code
    • no additional plugins required
  • 0% runtime overhead
    • not even a single import is required
  • 100% coverage of the public SciPy API
    • also covers most of the private API
  • Precise type-hinting of dtypes and shape-types
    • works with all "array-likes" and "dtype-likes"
    • many of the functions that return an array are shape-typed
    • shape-typing is optional: all functions still accept arrays with unknown shape-type
  • Type-checker agnostic
  • SPEC 0 compliant
    • Supports Python β‰₯ 3.10
    • Supports NumPy β‰₯ 1.24

Installation

PyPI Conda
pip install scipy-stubs
conda install conda-forge::scipy-stubs

Supported static type-checkers

  1. basedpyright (recommended)
  2. basedmypy
  3. pyright
  4. mypy (not recommended, see erictraut/mypy_issues)

For validation and testing, scipy-stubs primarily uses basedmypy (a mypy fork) and basedpyright (a pyright fork). They are in generally stricter than mypy and pyright, so you can assume compatibility with mypy and pyright as well. But if you find that this isn't the case, then don't hesitate to open an issue or submit a pull request.

Versioning and requirements

The versioning scheme of scipy-stubs includes the compatible scipy version as {scipy_version}.{stubs_version}. Even though scipy-stubs doesn't enforce an upper bound on the scipy version, later scipy versions aren't guaranteed to be fully compatible.

The supported range of numpy versions are specified in SPEC 0, which scipy-stubs aims to follow as close as feasible.

Currently, scipy-stubs has one required dependency: optype. This is essential for scipy-stubs to work properly, as it relies heavily on it for annotating (shaped) array-likes, scalar-likes, shape-typing in general, and much more. At the moment, scipy-stubs requires the latest version optype.

The exact version requirements are specified in the pyproject.toml.

scipy coverage

The entire public API of scipy is fully annotated and verifiably valid. For the most part, this can also be said about scipy's private API and other internal machinery.

However, a small portion uses Untyped (an alias of Any) as "placeholder annotations". In those cases static type-checkers won't do any type-checking, and won't bother you with errors or warnings.

The following table shows the (subjective) proportion of scipy-stubs that is(n't) annotated with Untyped, ranging from πŸŒ‘ (100% Untyped) to πŸŒ• (0% Untyped).

scipy._ ruff & flake8-pyi stubtest basedmypy basedpyright phase
cluster βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ•
constants βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ 🌝
datasets βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ 🌝
fft βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ•
fftpack βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ•
integrate βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ•
interpolate βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ“
io βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ•
linalg βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ•
misc βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ•
ndimage βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ•
odr βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ•
optimize βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ•
signal βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ”
sparse βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ’
spatial βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ•
special βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ•
stats βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ•
_lib βœ”οΈ βœ”οΈ βœ”οΈ βœ”οΈ πŸŒ•

Currently, only interpolate, signal, and sparse contain Untyped annotations.

See also

  • scipy/scipy#21614: On why scipy-stubs is a separate package, and not part of scipy (yet).
  • microsoft/python-type-stubs#321: The removal of Microsoft's scipy-stubs β€” that used to be bundled with Pylance β€” in favor of scipy-stubs.
  • optype: The fundamental typing package that made scipy-stubs possible.
  • basedpyright: The recommended type-checker to use with scipy-stubs.
  • basedmypy: A less-broken mypy fork, with a bunch of cool extra features.