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

(chore): v0.11 fragments #1611

Merged
merged 27 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
88a5e45
(feat): add `hatch.toml` for building the docs
ilan-gold Aug 21, 2024
1cfa318
(chore): start using `towncrier` for next release by preparing it
ilan-gold Aug 21, 2024
de44794
(fix): release notes locale
ilan-gold Aug 21, 2024
0daf18d
(chore): `venv` ignored
ilan-gold Aug 21, 2024
272b67d
(fix): add issue formatter
ilan-gold Aug 21, 2024
8e4b939
(chore): add correct header
ilan-gold Aug 22, 2024
a4937de
(chore): reignore `hatch.toml`
ilan-gold Aug 22, 2024
8441d5a
Merge branch 'main' into ig/towncrier
flying-sheep Aug 23, 2024
1eedf30
Update pyproject.toml
ilan-gold Aug 23, 2024
eefafad
Rely on prerelease version
flying-sheep Aug 23, 2024
d1e83c0
Update pyproject.toml
ilan-gold Aug 23, 2024
5145302
(fix): remove `hatch.toml` from `.gitignore`
ilan-gold Aug 23, 2024
249030e
Sketch for bump CI
flying-sheep Aug 25, 2024
236637d
Add CLI
flying-sheep Aug 25, 2024
ef8ac8f
(fix): broken `v0.11` link
ilan-gold Aug 26, 2024
1ebcd20
(chore): move `towncrier` to full release
ilan-gold Aug 26, 2024
67ca1f8
(fix): use `repr`
ilan-gold Aug 26, 2024
271353f
(fix): remove quotes
ilan-gold Aug 26, 2024
78577c6
directive
flying-sheep Aug 26, 2024
b5bbf09
Merge branch 'main' into ig/towncrier
flying-sheep Aug 26, 2024
1d2a8d0
(fix): remove extra issue number
ilan-gold Aug 27, 2024
c08ccf5
(fix): date in title
ilan-gold Aug 27, 2024
ecdf108
(chore): v0.11 fragments
ilan-gold Aug 27, 2024
f1abc33
(fix): `should_remove_unused_categories` number
ilan-gold Aug 27, 2024
57724ca
(fix): remove extra `pr`
ilan-gold Aug 27, 2024
4c95314
Merge branch 'main' into ig/v11_towncrier
ilan-gold Aug 27, 2024
a8aba59
Update 1244.feature.md
flying-sheep Aug 27, 2024
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
23 changes: 0 additions & 23 deletions docs/release-notes/0.11.0.md

This file was deleted.

1 change: 1 addition & 0 deletions docs/release-notes/1028.feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
`scipy.sparse.csr_array` and `scipy.sparse.csc_array` are now supported when constructing `AnnData` objects {user}`ilan-gold` {user}`isaac-virshup`
1 change: 1 addition & 0 deletions docs/release-notes/1197.breaking.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Removed deprecated modules `anndata.core` and `anndata.readwrite` {user}`ivirshup`
1 change: 1 addition & 0 deletions docs/release-notes/1244.feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Allow `axis` parameter of e.g. :func:`anndata.concat` to accept `'obs'` and `'var'` {user}`flying-sheep`
1 change: 1 addition & 0 deletions docs/release-notes/1270.feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add `settings` object with methods for altering internally-used options, like checking for uniqueness on `obs`' index {user}`ilan-gold`
1 change: 1 addition & 0 deletions docs/release-notes/1340.feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add {attr}`~anndata.settings.should_remove_unused_categories` option to {attr}`anndata.settings` to override current behavior {user}`ilan-gold`
1 change: 1 addition & 0 deletions docs/release-notes/1469.feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add :func:`~anndata.experimental.read_elem_as_dask` function to handle i/o with sparse and dense arrays {user}`ilan-gold`
1 change: 1 addition & 0 deletions docs/release-notes/1474.feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
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`
1 change: 1 addition & 0 deletions docs/release-notes/1507.feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add {attr}`~anndata.settings.should_check_uniqueness` option to {attr}`anndata.settings` to override current behavior {user}`ilan-gold`
1 change: 1 addition & 0 deletions docs/release-notes/1550.feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add functionality to write from GPU {class}`dask.array.Array` to disk {user}`ilan-gold`
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -210,3 +210,6 @@ title_format = "(v{version})=\n### {version} {{small}}`{project_date}`"

[tool.towncrier.fragment.performance]
name = "Performance"

[tool.towncrier.fragment.breaking]
name = "Breaking"
Loading