-
Notifications
You must be signed in to change notification settings - Fork 19
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
feat: add dak.zip_no_broadcast #567
base: main
Are you sure you want to change the base?
feat: add dak.zip_no_broadcast #567
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything looks in order.
src/dask_awkward/lib/io/io.py
Outdated
@@ -468,7 +468,7 @@ def to_dataframe( | |||
""" | |||
import dask | |||
from dask.dataframe import DataFrame as DaskDataFrame | |||
from dask.dataframe.core import new_dd_object # type: ignore | |||
from dask.dataframe.core import new_dd_object |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This does not work with new dask, this is the problem that needs fixing. I don't know if that has any implication for this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
my pre-commit did complain about this - ah maybe I was on an old dask version locally?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suppose it's fine either way, we know this code is OK on python 3.9 (which never got the new dask) and doesn't work on newer versions at all.
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #567 +/- ##
==========================================
- Coverage 93.06% 92.08% -0.99%
==========================================
Files 23 24 +1
Lines 3290 3613 +323
==========================================
+ Hits 3062 3327 +265
- Misses 228 286 +58 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Awkward-array v2.7.4 introduces
ak.zip_no_broadcast
which is useful for coffea to construct arrays without touching unwanted buffer keys. This PR implements thedak
equivalent.