Skip to content

Commit

Permalink
Fix docs links (#1720)
Browse files Browse the repository at this point in the history
  • Loading branch information
flying-sheep authored Oct 17, 2024
1 parent 96ccce7 commit 3260222
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,17 +121,17 @@ def setup(app: Sphinx):


intersphinx_mapping = dict(
h5py=("https://docs.h5py.org/en/latest/", None),
hdf5plugin=("https://hdf5plugin.readthedocs.io/en/latest/", None),
loompy=("https://linnarssonlab.org/loompy/", None),
numpy=("https://numpy.org/doc/stable/", None),
pandas=("https://pandas.pydata.org/pandas-docs/stable/", None),
h5py=("https://docs.h5py.org/en/latest", None),
hdf5plugin=("https://hdf5plugin.readthedocs.io/en/latest", None),
loompy=("https://linnarssonlab.org/loompy", None),
numpy=("https://numpy.org/doc/stable", None),
pandas=("https://pandas.pydata.org/pandas-docs/stable", None),
python=("https://docs.python.org/3", None),
scipy=("https://docs.scipy.org/doc/scipy/", None),
sklearn=("https://scikit-learn.org/stable/", None),
zarr=("https://zarr.readthedocs.io/en/stable/", None),
xarray=("https://docs.xarray.dev/en/stable/", None),
dask=("https://docs.dask.org/en/stable/", None),
scipy=("https://docs.scipy.org/doc/scipy", None),
sklearn=("https://scikit-learn.org/stable", None),
zarr=("https://zarr.readthedocs.io/en/stable", None),
xarray=("https://docs.xarray.dev/en/stable", None),
dask=("https://docs.dask.org/en/stable", None),
)
qualname_overrides = {
"h5py._hl.group.Group": "h5py.Group",
Expand Down
4 changes: 2 additions & 2 deletions docs/release-notes/0.11.0rc1.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
#### Features

- `scipy.sparse.csr_array` and `scipy.sparse.csc_array` are now supported when constructing `AnnData` objects {user}`ilan-gold` {user}`isaac-virshup` ({pr}`1028`)
- Allow `axis` parameter of e.g. :func:`anndata.concat` to accept `'obs'` and `'var'` {user}`flying-sheep` ({pr}`1244`)
- Allow `axis` parameter of e.g. {func}`anndata.concat` to accept `'obs'` and `'var'` {user}`flying-sheep` ({pr}`1244`)
- Add `settings` object with methods for altering internally-used options, like checking for uniqueness on `obs`' index {user}`ilan-gold` ({pr}`1270`)
- Add {attr}`~anndata.settings.remove_unused_categories` option to {attr}`anndata.settings` to override current behavior {user}`ilan-gold` ({pr}`1340`)
- Add :func:`~anndata.experimental.read_elem_as_dask` function to handle i/o with sparse and dense arrays {user}`ilan-gold` ({pr}`1469`)
- Add {func}`~anndata.experimental.read_elem_as_dask` function to handle i/o with sparse and dense arrays {user}`ilan-gold` ({pr}`1469`)
- Add ability to convert strings to categoricals on write in {meth}`~anndata.AnnData.write_h5ad` and {meth}`~anndata.AnnData.write_zarr` via `convert_strings_to_categoricals` parameter {user}` falexwolf` ({pr}`1474`)
- Add {attr}`~anndata.settings.check_uniqueness` option to {attr}`anndata.settings` to override current behavior {user}`ilan-gold` ({pr}`1507`)
- Add functionality to write from GPU {class}`dask.array.Array` to disk {user}`ilan-gold` ({pr}`1550`)
Expand Down

0 comments on commit 3260222

Please sign in to comment.