Skip to content

Commit ac8e593

Browse files
committed
Add some missing mentions of sparse
1 parent 676e373 commit ac8e593

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

docs/dev/tests.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ dependencies from `requirements-dev.txt` (array-api-compat has [no hard
1111
runtime dependencies](no-dependencies)).
1212

1313
array-api-tests is run against all supported libraries are tested on CI
14-
([except for JAX](jax-support)). This is achieved by a [reusable GitHub Actions
14+
([except for JAX](jax-support) and [Sparse](sparse-support)). This is achieved
15+
by a [reusable GitHub Actions
1516
Workflow](https://github.com/data-apis/array-api-compat/blob/main/.github/workflows/array-api-tests.yml).
1617
Most libraries have tests that must be xfailed or skipped for various reasons.
1718
These are defined in specific `<library>-xfails.txt` files and are

docs/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
This is a small wrapper around common array libraries that is compatible with
44
the [Array API standard](https://data-apis.org/array-api/latest/). Currently,
5-
NumPy, CuPy, PyTorch, Dask, and JAX are supported. If you want support for other array
6-
libraries, or if you encounter any issues, please [open an
5+
NumPy, CuPy, PyTorch, Dask, JAX, and Sparse are supported. If you want support
6+
for other array libraries, or if you encounter any issues, please [open an
77
issue](https://github.com/data-apis/array-api-compat/issues).
88

99
Note that some of the functionality in this library is backwards incompatible

docs/supported-array-libraries.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -133,5 +133,7 @@ Other methods may only be partially implemented or return incorrect results at t
133133

134134
The minimum supported Dask version is 2023.12.0.
135135

136-
## [`sparse`](https://sparse.pydata.org/en/stable/)
136+
(sparse-support)=
137+
## [Sparse](https://sparse.pydata.org/en/stable/)
138+
137139
Similar to JAX, `sparse` Array API support is contained directly in `sparse`.

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"jax": "jax",
2222
"pytorch": "pytorch",
2323
"dask": "dask",
24+
"sprase": "sparse >=0.15.1",
2425
},
2526
classifiers=[
2627
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)