Skip to content

Releases: scikit-hep/boost-histogram

Version 0.11.1

22 Oct 18:38

Choose a tag to compare

Updating pybind11 to 2.6.0. #443 Features:

  • Python 3.9 support
  • PyPy2 / PyPy3.6 / PyPy3.7 support
  • Warnings on latest AppleClang fixed
  • 40% faster accumulator fills, simpler implementation
  • Segfaults when passing an object with a throwing repr fixed
  • kwargs replaced older workarounds (partially at the moment)
  • Using new py::type instead of pybind11::detail usage
  • Enhanced CMake support, finds conda and venv now, uses pybind11_find_import
  • Using setuptools support from pybind11 (previously vendored, so benefits have been available since 0.11.0)

Also cleans up SDists a bit. #467

Version 0.11.0

24 Sep 12:18

Choose a tag to compare

A release focused on preparing for the upcoming Hist 2.0 release.

User changes

  • Arbitrary items can be set on an axis or histogram. #450, #456
  • Subclasses can customize the conversion procedure. #456

Bug fixes

  • Fixed reading pickles from boost-histogram 0.6-0.8 #445
  • Minor correctness fix #446
  • Accidental install of typing on Python 3.5+ fixed
  • Scalar ND fill fixed #453

Developer changes

  • Updated to Boost 1.74 #442
  • CMake installs version.py now too #449
  • Updated setuptools infrastructure no longer requires NumPy #451
  • Some basic clang-tidy checks are now being run #455

Version 0.10.2

31 Jul 02:23
6290fe5

Choose a tag to compare

Quick fix for extra print statement in fill.

Bug fixes

  • Fixed debugging print statement in fill. #438

Developer changes

  • Added CI/pre-commit check for print statements #438
  • Formatting CMakeLists now too #439

Version 0.10.1

29 Jul 13:36

Choose a tag to compare

Several fixes were made, mostly related to Weight storage histograms from Uproot 4.

Bug fixes

  • Reduction on h.axes.widths supported again #428
  • WeightedSumView supports standard array operations #432
  • Operations shallow copy (non-copyable metadata supported) #433
  • Pandas Series as samples/weights supported #434
  • Support NumPy scalars in operations #436

Version 0.10.0

16 Jul 16:43

Choose a tag to compare

This version was released during PyHEP 2020. Several improvements were made to
usability when plotting and indexing. ARM and PowerPC builds are now published to PyPI.

User changes

  • AxesTuple array now support operations via ArrayTuple #414
  • Support sum and bh.rebin without slice #424
  • Nicer error messages in some cases #415
  • Made a few properties hidden for accumulators that were not public #418
  • Boolean now supports reduction, faster compile #422
  • AxesTuple now available publicly for subprojects #419

Bug fixes

  • Histograms support operations with arrays, no longer take the first element only #417

Version 0.9.0

11 Jul 22:29

Choose a tag to compare

This version was released just before PyHEP 2020. Several important fixes were made,
along with a few new features to better support downstream projects.

User changes

  • metadata supported and propagated on Histograms (slots added) #403
  • Added dd=True option in to_numpy #406
  • Deprecated cpp module removed #402

Developer changes

  • Subclasses can override axes generation #401
  • [dev] extra now installs pytest #401

Bug fixes

  • Fix numpy.histogramdd return structure #406
  • Travis deploy multi-arch fixes #399
  • Selecting on a bool axes supports 2D+ histograms #398
  • Warnings fixed on NumPy 1.19+ [#404][]

Version 0.8.0

06 Jul 20:24

Choose a tag to compare

This version was released just before SciPy 2020 and Boost 1.74. Highlights
include better accumulator views, simpler summing, better NumPy and Pandas
compatibility, and sums on growing axes. Lots of backend work,
including a new wheel building system, internal changes and better reliance
on Boost.Histogram's C++ tools for actions like cropping.

User changes

  • Weighted histogram cells can now be assigned directly from iterables #375
  • Weighted views can be summed and added #368
  • Sum is now identical to the built-in sum function #365
  • Adding growing axis is better supported #358
  • Slicing an AxesTuple now keeps the type #384
  • ndim replaces rank for NumPy compatibility #385
  • Any array-like supported in fill #391, any iterable can be used for Categories #392
  • Added Boolean axes, from Boost.Histogram 1.74 #390
  • Division between histograms is supported #393
  • More deprecated functionality removed

Bug fixes

  • Support older versions of CloudPickle (issue also fixed upstream) #343
  • Drop extra printout #338
  • Throw an error instead of returning an incorrect result in more places #386

Developer changes

  • Update Boost to 1.73 #359, PyBind11 to 2.5.0 #351, Boost.Histogram to pre-1.74 #388
  • Cropping no longer uses workaround #373
  • Many more checks added to pre-commit #366
  • Deprecating cpp interface #391
  • Wheelbuilding migrated to cibuildwheel and GHA #361

Version 0.7.0

16 Mar 18:57

Choose a tag to compare

This version removes deprecated functionality, and has several backend
improvements. The most noticeable user-facing change is the multithreaded fill
feature, which can enable significant speedups when you have a dataset that is
much larger than the number of bins in your histogram and have free cores to
use. Several small bugs have been fixed.

User changes

  • Added threads= keyword to .fill and numpy functions; 0 for automatic, default is 1 #325
  • .metadata is now settable directly from the AxesTuple #303
  • Deprecated items from 0.5.x now dropped #301
  • cpp mode updates and fixes #317

Bug fixes

  • Dict indexing is now identical to positional indexing, fixes "picking" axes in dict #320
  • Passing samples=None is now always allowed in .fill #325

Developer changes

  • Build system update, higher requirements for developers (only) #314
    • Version is now obtained from setuptools_scm, no longer stored in repo
  • Removed futures requirement for Python 2 tests
  • Updated Boost.Histogram, cleaner code with fewer workarounds

Version 0.6.2

07 Jan 22:37

Choose a tag to compare

Common analysis tasks are now better supported. Much more complete
documentation. Now using development branch of Boost.Histogram again.

Bug fixes

  • Fix sum over category axes in indexing #298
  • Allow single category item selection #298
  • Allow slicing on axes without flow bins #288, #300
  • Sum repr no longer throws error #293

Developer changes

  • Now using scikit-hep/azure-wheel-helpers via subtree #292

Version 0.6.1

12 Dec 23:49
11350f7

Choose a tag to compare

Examples and notebooks are now up to date with the current state of the
library. Using Boost 1.72 release.

User changes

  • Slices and single values can be mixed in indexing #279
  • UHI locators supported on axes #280

Bug fixes

  • Properties on accumulator views now resolve correctly #273
  • Division of a histogram by a number is supported again #278
  • Setting a histogram with length one slice fixed #279
  • Numpy functions now work with Numpy ints in bins= #282
  • In-place addition avoids a copy #284