Revisions of python-awkward
buildservice-autocommit
accepted
request 1084866
from
Matej Cepl (mcepl)
(revision 40)
baserev update by copy to link target
Matej Cepl (mcepl)
accepted
request 1084821
from
Atri Bhattacharya (badshah400)
(revision 39)
Update required version for python-awkward-cpp to 15.
buildservice-autocommit
accepted
request 1083964
from
Dirk Mueller (dirkmueller)
(revision 38)
baserev update by copy to link target
Dirk Mueller (dirkmueller)
accepted
request 1083481
from
Atri Bhattacharya (badshah400)
(revision 37)
- Update to version 2.1.4
buildservice-autocommit
accepted
request 1082324
from
Dirk Mueller (dirkmueller)
(revision 36)
baserev update by copy to link target
Dirk Mueller (dirkmueller)
committed
(revision 35)
- update to 2.1.3: * fix: support empty records in ak.with_field by @agoose77 in #2387 * fix: only format exception for primary context * fix: only touch data in nplike.asarray if copy is required * fix: update GrowableBuffer::move_to algorithm * fix: don't touch for ascontiguousarray * feat: use cppyy for JIT * feat!: rename cpptype * feat: implemented GrowableBuffer in Numba as a start toward LayoutBuilder * feat: add to_backend to ak.record.Record * feat: add type equality is_equal_to member * fix: expose array interface for CUDA * fix: test untested path in ak.cartesian & broadcasting * fix: ak.cartesian for typetracer * fix: Numba string reference count memory leak. * fix: generate an array view when an Array C++ type is requested * fix: do not expose an rdfentry_ column * fix: generate RDataSource API based on ROOT attribute * fix: simplify depth limit test to support bigger-than-depth values * fix: use cppyy include * fix: convert ufunc arguments to same backend * fix: support N-d sequences in TypeTracer.asarray * fix: make from_iter require iterables! * fix: avoid stack overflow with std::unique_ptr linked list * fix: ak.unzip visits all contents * fix: remove spurious typetracer conversion * feat: add support for arrays in from_buffers * feat: validate axis in L1 * feat: add examples to header-only module * fix: support typetracer in ak.unflatten
buildservice-autocommit
accepted
request 1071882
from
Dirk Mueller (dirkmueller)
(revision 34)
baserev update by copy to link target
Dirk Mueller (dirkmueller)
committed
(revision 33)
- update to 2.1.0: * bump numpy to 1.17.0
buildservice-autocommit
accepted
request 1069926
from
Dirk Mueller (dirkmueller)
(revision 32)
baserev update by copy to link target
Dirk Mueller (dirkmueller)
committed
(revision 31)
- update to 2.0.9: * feat: keep column order after filtering flag * feat: Awkward Arrays in Numba's CUDA target * feat: add 'highlevel' and 'behavior' arguments to 'ak.from_rdataframe' function * fix: set dtype in full_like * fix: use simplified in ak._do.merge_as_union * fix: support unknown content length in to_packed * fix: run-lengths with typetracer * fix: add trivial nan_to_num impl * fix: add ak.broadcast_fields * fix: keep column order in all tests
buildservice-autocommit
accepted
request 1068476
from
Dirk Mueller (dirkmueller)
(revision 30)
baserev update by copy to link target
Dirk Mueller (dirkmueller)
committed
(revision 29)
- update to 2.0.8: * allow awkward type arrays filtering based on rdfentry * feat!: re-introduce unknown-length * fix: keep EmptyArray in remove_structure * fix: add is_c_contiguous method to Cupy * fix: boolean indexing with non-zero starting offsets * fix: add license to _backends * fix: use of size in to_RegularArray * fix: indexing into RegularArray with typetracer * fix: support length-zero outer arrays in almost_equal * fix: support options in ak.merge_union_of_records * fix: don't merge non-union parameters * fix: boolean slicing with non-packed arrays * refactor: add type hints for Content._getitem_XXX * refactor: drop NumpyLike.known_shape * refactor: change Content._getitem_range to use explicit indices * docs: fix example for merge_union_of_records * docs: add 1.10 legacy docs to switcher.json * docs: reintroduce Content documentation from v1 reST files. * docs: add how-to-examine-type.md * docs: improve ragged indexing docs * chore: include cuda kernel tests in sdist * chore(deps): bump amannn/action-semantic-pull-request from 5.0.2 to 5.1.0 * chore: update pre-commit hooks
buildservice-autocommit
accepted
request 1066313
from
Steve Kowalik (StevenK)
(revision 28)
baserev update by copy to link target
Steve Kowalik (StevenK)
committed
(revision 27)
- awkward 2.0.7 actually requires awkward-cpp 8.
Dirk Mueller (dirkmueller)
committed
(revision 26)
- update to 2.0.7 * feat: add ability to forget length of typetracer created with typetracer_from_report * feat: start hardening nplike signatures * feat: implement all ufuncs on TypeTracer. * feat: use None for unknown lengths (1 of 2) * feat: coerce backends to same zero-copy type (2 of 2) * feat: growable buffer move_to method * feat: add ak.merge_union_of_records * feat: add support for histogram module * feat: add ak.approx_equal * fix: re-order cases to handle NumPy scalar types properly * fix: specify dtype for buffers in from_rdataframe. * fix: unify typestr with _repr * fix: update type_to_name for Layout builder cxx_14 target * fix: Layout builders clean and length bug fixes * fix: support mask_identity=True for axis=None in ptp, std, etc. * fix: preserve dimensions for keepdims=True, axis=None reductions * fix: some usages of len(layout) under typetracer * fix: rdataframe memory check * fix: rework parameter merging rules * fix: don't raise NotImplementedError when reading empty array from Parquet * fix: ignore object arrays * fix: ak.values_astype now turns 'unknown' type into the requested type.
buildservice-autocommit
accepted
request 1061725
from
Dirk Mueller (dirkmueller)
(revision 25)
baserev update by copy to link target
Dirk Mueller (dirkmueller)
accepted
request 1061657
from
Benjamin Greiner (bnavigator)
(revision 24)
- Update to 2.0.6 * feat: expose typetracer in public backend API by @agoose77 in #2066 * feat: add byteorder argument to to_buffers by @agoose77 in #2095 * feat: add exception for missing field by @agoose77 in #2120 - Release 2.0.3 and 2.0.4 * The flatten_records argument of all reducers (ak.all, ak.any, ..., ak.var) has effectively been removed: setting it now raises an error (PR #2020). This argument applies a reducer to all contents of a record, merging fields, and it had to be removed to properly implement axis=None. The old default, flatten_records=False, is now the only behavior, and to get the equivalent of flatten_records=True, you can use ak.ravel: ak.sum(array, flatten_records=True) becomes ak.sum(ak.ravel(array)) * Removing the feature is still the right thing to do, but the function argument needs to go through a deprecation cycle, since libraries like dask-awkward pass arguments through to Awkward. Removing flatten_records as an argument introduces an error, even if the surviving case of flatten_records=False is desired. - Release 2.0.2 * feat: add ak.drop_none() by @ioanaif in #1904 - Release 2.0.1 * feat: add ak.without_field by @agoose77 in #1963 - Release 2.0.0 * The Awkward Array version 2 project started in June of 2021 and has been developed alongside version 1 updates. For most of that time, it was available as a submodule, awkward._v2, so that it could be tested with the same tests as version 1 and
buildservice-autocommit
accepted
request 1035176
from
Daniel Garcia (dgarcia)
(revision 23)
baserev update by copy to link target
Daniel Garcia (dgarcia)
committed
(revision 22)
- Rvert the devel package requirement, python-awkward is not provided by any of subpackages, the real package provided is python3-awkward.
Daniel Garcia (dgarcia)
committed
(revision 21)
- Remove not needed tests filter - Improve devel package requirement to use the package name variable instead of python3-awkward - Update to 1.10.2: # New features * feat: add RegularArray._reduce_next implementation (backport) by @agoose77 in #1813 # Bug-fixes and performance * fix: don't assume trailing . for module name in is_XXX_buffer (backport) by @agoose77 in #1746 * fix: use proper lengths in ByteMaskedArray.mergemany (backport) by @agoose77 in #1750 * fix: simplify ListOffsetArray_reduce_nonlocal_outstartsstops (backport) by @agoose77 in #1797 # Other * chore: remove v2 Python highlevel LayoutBuilder from main-v1. by @jpivarski in #1863
Displaying revisions 41 - 60 of 80