Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Commit cf73e3f

Browse files
authored
Merge pull request #46 from lincc-frameworks/bump_to_npd_0_1_3
bump to nested-pandas 0.1.3
2 parents bd4f3ce + 511900c commit cf73e3f

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ classifiers = [
1616
dynamic = ["version"]
1717
requires-python = ">=3.9"
1818
dependencies = [
19-
'nested-pandas==0.1.2',
19+
'nested-pandas==0.1.3',
2020
'numpy',
2121
'dask>=2024.3.0',
2222
'dask[distributed]>=2024.3.0',

src/nested_dask/utils/utils.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ def count_nested(df, nested, by=None, join=True) -> NestedFrame:
3535
if by is not None:
3636
# will have one column per unique value of the specified column
3737
# requires some computation to determine these values
38-
# TODO: Requires modification of nested-pandas to always produce
39-
# sorted output columns for meta
4038
by_cols = sorted(df[nested].nest.to_flat()[by].unique())
4139
out_cols = [f"n_{nested}_{col}" for col in by_cols]
4240
else:

0 commit comments

Comments
 (0)