Skip to content

Commit

Permalink
[misc] Remove MacOS support claim for census builder (#1084)
Browse files Browse the repository at this point in the history
* Remove claim of MacOS support for builder

* Fix type annotation of result of dask computation
  • Loading branch information
prathapsridharan authored Apr 4, 2024
1 parent 2ab16d4 commit 1b3471b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion tools/cellxgene_census_builder/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ classifiers = [
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.11",
]
dependencies= [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def get_obs_and_var(
return obs_df, var_df

datasets_bag = dask.bag.from_sequence(datasets)
df_pairs_per_eb: list[tuple[pd.DataFrame, pd.DataFrame]] = dask.compute(
df_pairs_per_eb: list[list[tuple[pd.DataFrame, pd.DataFrame]]] = dask.compute(
*[
datasets_bag.map(
get_obs_and_var,
Expand Down

0 comments on commit 1b3471b

Please sign in to comment.