Releases: scikit-hep/uproot3
Releases · scikit-hep/uproot3
3.5.0rc2
rc2 for consistency with awkward and uproot-methods.
3.5.0rc1
Deploy prerelease to test dependency chain.
3.5.0
First version to depend on awkward 0.9.0 and uproot-methods 0.5.0. Most of the motivation for a synchronized release was to manage a dependency between awkward and uproot-methods, and to introduce the first usable awkward-numba, but this synchronized release finally broke a dependency in which uproot's Pandas handler illegally used private methods from awkward.JaggedArray
. Now all communication is at the level of public API.
3.4.19
Fix for #267 as a new release.
3.4.18
Bug fix: uproot can now write the TH1
objects that it produces upon reading (closure tests): PR #265.
Also, this is the first version to be using mamba for tests (quicker SAT solver for conda): PR #266.
3.4.17
Made uproot.pandas.iterate
work on earlier versions of Pandas than 0.24.0.
3.4.16
PR #264: fixes issue #263 and provides new methods and functions:
tree.pandas.iterate
is like tree.pandas.df
in that it sets some Pandas-friendly defaults, but on tree.iterate
, rather than tree.arrays
.
uproot.pandas.iterate
sets those Pandas-friendly defaults on uproot.iterate
.
3.4.14
PR #257: consistency in Pandas index for jagged and flat columns.
3.4.13
One quick patch: protect new prefetching mechanism from empty datasets (17923e0).
And one near-mistake: homogenized asarray.destination
return type (662547c) and then restored it (7e4ad70) because it really needs that different return type.