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

feat: support shape_touched from Dask #900

Merged
merged 33 commits into from
Oct 17, 2023
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b8fc7fe
wip: initial commit
agoose77 Oct 3, 2023
1b4bd50
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 3, 2023
daa8529
fix: rename function
agoose77 Oct 4, 2023
df97041
Merge remote-tracking branch 'agoose77/agoose77/feat-support-shape-to…
agoose77 Oct 4, 2023
66c8710
fix: use report_necessary_buffers
agoose77 Oct 4, 2023
f31815b
Merge branch 'master' into agoose77/feat-support-shape-touched
agoose77 Oct 4, 2023
2353a23
fix: properly parse form keys
agoose77 Oct 4, 2023
17a6f2f
Merge remote-tracking branch 'agoose77/agoose77/feat-support-shape-to…
agoose77 Oct 4, 2023
bd07d03
hack: convert Content to array
agoose77 Oct 5, 2023
a6848a0
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 5, 2023
9c90205
fix: ensure layout nodes converted to arrays
agoose77 Oct 5, 2023
379a508
Merge remote-tracking branch 'agoose77/agoose77/feat-support-shape-to…
agoose77 Oct 5, 2023
04b5a1a
adjust coffea pins to latest releases and pre-releases
lgray Oct 7, 2023
f19c11b
use pytorch-only triton image
lgray Oct 7, 2023
7051d2e
streamline version requirements
lgray Oct 7, 2023
3fe957b
Merge branch 'master' into agoose77/feat-support-shape-touched
lgray Oct 7, 2023
d3fb1c9
Merge branch 'master' into agoose77/feat-support-shape-touched
lgray Oct 7, 2023
33d2e68
fix: don't import protocol
agoose77 Oct 8, 2023
9d94cb0
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 8, 2023
c49a8bc
Merge branch 'master' into agoose77/feat-support-shape-touched
lgray Oct 10, 2023
0d9c913
remove deprecated interface definition
lgray Oct 11, 2023
bb4df59
Update tests/test_jetmet_tools.py
agoose77 Oct 11, 2023
e0694ad
Update tests/test_jetmet_tools.py
agoose77 Oct 11, 2023
e7384f9
remove further remnants of old remapping interface
lgray Oct 11, 2023
92efdb2
refactor: make key translation obvious
agoose77 Oct 11, 2023
8ae3cd5
fix typo from refactor
lgray Oct 12, 2023
45a0060
update pins (note uncapped numpy and numba skooch)
lgray Oct 14, 2023
14d2cc2
try to convince pip to upgrade numpy upon installing coffea
lgray Oct 14, 2023
ab3599e
be more insistent
lgray Oct 14, 2023
faff41e
numba 0.58 pins numpy from above < 1.26
lgray Oct 14, 2023
864f709
clean up usage of quoted ",!offsets"
lgray Oct 17, 2023
9b96f7b
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 17, 2023
0a525d0
flake8 lint
lgray Oct 17, 2023
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
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ classifiers = [
"Topic :: Utilities",
]
dependencies = [
"awkward>=2.4.2",
"uproot>=5.0.10",
"awkward>=2.4.5",
"uproot>=5.1.0rc1",
"dask[array]>=2023.4.0",
"dask-awkward>=2023.7.1,!=2023.8.0",
"dask-histogram>=2023.6.0",
"dask-awkward>=2023.10a1,!=2023.8.0",
lgray marked this conversation as resolved.
Show resolved Hide resolved
"dask-histogram>=2023.7a0",
"correctionlib>=2.0.0",
"pyarrow>=6.0.0",
"fsspec",
Expand Down
Loading