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

prep for 1.8 release #852

Merged
merged 9 commits into from
Nov 20, 2023
Merged
Show file tree
Hide file tree
Changes from 6 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
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022-2023 Chan Zuckerberg Initiative
Copyright (c) 2022-2023 Chan Zuckerberg Initiative Foundation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion api/python/cellxgene_census/LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 Chan Zuckerberg Initiative
Copyright (c) 2022-2023 Chan Zuckerberg Initiative Foundation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions api/python/cellxgene_census/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "cellxgene_census"
dynamic = ["version"]
description = "API to facilitate the use of the CZ CELLxGENE Discover Census. For more information about the API and the project visit https://github.com/chanzuckerberg/cellxgene-census/"
authors = [
{ name = "Chan Zuckerberg Initiative", email = "[email protected]" }
{ name = "Chan Zuckerberg Initiative Foundation", email = "[email protected]" }
]
license = { text = "MIT" }
readme = "README.md"
Expand All @@ -31,7 +31,7 @@ dependencies= [
# NOTE: the tiledbsoma version must be >= to the version used in the Census builder, to
# ensure that the assets are readable (tiledbsoma supports backward compatible reading).
# Make sure this version does not fall behind the builder's tiledbsoma version.
"tiledbsoma~=1.4.3",
"tiledbsoma~=1.5.1",
"anndata",
"numpy>=1.21,<1.25", # numpy is constrained by numba and the old pip solver
"requests",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022-2023 Chan Zuckerberg Initiative
# Copyright (c) 2022-2023 Chan Zuckerberg Initiative Foundation
#
# Licensed under the MIT License.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022-2023 Chan Zuckerberg Initiative
# Copyright (c) 2022-2023 Chan Zuckerberg Initiative Foundation
#
# Licensed under the MIT License.

Expand Down
2 changes: 1 addition & 1 deletion api/python/cellxgene_census/src/cellxgene_census/_open.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022-2023 Chan Zuckerberg Initiative
# Copyright (c) 2022-2023 Chan Zuckerberg Initiative Foundation
#
# Licensed under the MIT License.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022-2023 Chan Zuckerberg Initiative
# Copyright (c) 2022-2023 Chan Zuckerberg Initiative Foundation
#
# Licensed under the MIT License.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022-2023 Chan Zuckerberg Initiative
# Copyright (c) 2022-2023 Chan Zuckerberg Initiative Foundation
#
# Licensed under the MIT License.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ def X_sparse_iter(
reindex_sparse_axis: bool = True,
) -> Iterator[_RT]:
"""
NOTE: this API is deprecated as of version 1.8, and will be removed in version
1.9. Please use the `blockwise` iterator support introduced in tiledbsoma version 1.5.

Iterate over rows (or columns) of the query results X matrix, with pagination to
control peak memory usage for large result sets. Each iteration step yields:
* obs_coords (coordinates)
Expand Down Expand Up @@ -78,7 +81,7 @@ def X_sparse_iter(
... ...

Lifecycle:
experimental
deprecated

See also: https://github.com/single-cell-data/TileDB-SOMA/issues/1528
"""
Expand Down
4 changes: 2 additions & 2 deletions api/r/cellxgene.census/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: cellxgene.census
Title: CZ CELLxGENE Discover Cell Census
Version: 1.7.0
Version: 1.8.0
Authors@R:
person("Chan Zuckerberg Initiative", email = "[email protected]",
person("Chan Zuckerberg Initiative Foundation", email = "[email protected]",
role = c("aut", "cre", "cph", "fnd"))
Description: API to facilitate the use of the CZ CELLxGENE Discover
Census. For more information about the API and the project visit
Expand Down
2 changes: 1 addition & 1 deletion api/r/cellxgene.census/LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MIT License

Copyright (c) 2023 Chan Zuckerberg Initiative
Copyright (c) 2023 Chan Zuckerberg Initiative Foundation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = 'cellxgene-census'
copyright = '2022-2023 Chan Zuckerberg Initiative'
author = 'Chan Zuckerberg Initiative'
copyright = '2022-2023 Chan Zuckerberg Initiative Foundation'
author = 'Chan Zuckerberg Initiative Foundation'

import git
repo = git.Repo(search_parent_directories=True)
Expand Down
2 changes: 1 addition & 1 deletion tools/cellxgene_census_builder/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "cellxgene_census_builder"
dynamic = ["version"]
description = "Build Cell Census"
authors = [
{ name = "Chan Zuckerberg Initiative", email = "[email protected]" }
{ name = "Chan Zuckerberg Initiative Foundation", email = "[email protected]" }
]
license = { text = "MIT" }
readme = "README.md"
Expand Down
Loading