Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

document that scipy-stubs is installable with conda #230

Merged
merged 2 commits into from
Nov 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 27 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
src="https://img.shields.io/pypi/v/scipy-stubs?style=flat&color=olive"
/>
</a>
<a href="https://github.com/jorenham/scipy-stubs">
<a href="https://anaconda.org/conda-forge/scipy-stubs">
<img
alt="scipy-stubs - Python Versions"
src="https://img.shields.io/pypi/pyversions/scipy-stubs?style=flat"
alt="scipy-stubs - conda-forge"
src="https://anaconda.org/conda-forge/scipy-stubs/badges/version.svg"
/>
</a>
<a href="https://github.com/jorenham/scipy-stubs">
<img
alt="scipy-stubs - dependencies"
src="https://img.shields.io/librariesio/github/jorenham/scipy-stubs?style=flat&color=violet"
alt="scipy-stubs - Python Versions"
src="https://img.shields.io/pypi/pyversions/scipy-stubs?style=flat"
/>
</a>
<a href="https://github.com/jorenham/scipy-stubs">
Expand All @@ -37,7 +37,6 @@
src="https://github.com/jorenham/scipy-stubs/workflows/CI/badge.svg"
/>
</a>
<!-- TODO -->
<a href="https://github.com/pre-commit/pre-commit">
<img
alt="scipy-stubs - pre-commit"
Expand Down Expand Up @@ -68,10 +67,32 @@ ______________________________________________________________________

## Installation

<table>

<tr>
<th width="500px">PyPI</th>
<th width="500px">Conda</th>
</tr>

<tr>
<td>

```shell
pip install scipy-stubs
```

</td>
<td>

```shell
conda install conda-forge::scipy-stubs
```

</td>
</tr>

</table>

## `scipy` coverage

The entire public API of `scipy` is **fully annotated** and **verifiably valid**.
Expand Down