This repository has been archived by the owner on Jun 21, 2022. It is now read-only.
Releases: scikit-hep/uproot3
Releases · scikit-hep/uproot3
3.10.8
3.10.7
3.10.6
3.10.5
3.10.4
3.10.3
3.10.2
Fixed the following:
- PR #346 (issue #345): Changes the flushsize default at the tree level to 30 MB from 30 KB.
- PR #350 (issue #306): Better error message when attempting to open multiple branches with
Tree.array
,Tree.lazyarray
, oruproot.lazyarray
(all the singular versions of methods with a plural alternative). - Issues #349 and #347: Added text to README.rst and tutorial.ipynb about flattening jagged arrays before histogramming and about the existence of TChain alternatives.
- PR #351 (issue #348): Support RangeIndex in Pandas
<0.25.0
and>=0.25.0
withhasattr
checks.
3.10.1
3.10.0
uproot can now write TTrees containing baskets with flat data!
Example -
import uproot
filename = "example.root"
b = uproot.newbranch(">i4", compression=uproot.LZMA(3))
branchdict = {"intBranch": b}
tree = uproot.newtree(branchdict)
a = [1, 2, 3, 4, 5]
with uproot.recreate(filename, compression=uproot.ZLIB(4)) as f:
f["t"] = tree
f["t"]["intBranch"].newbasket(a)