Skip to main content

The Boost::Histogram Python wrapper.

Project description

boost-histogram logo

boost-histogram for Python

Actions Status Documentation Status

PyPI version Conda-Forge PyPI platforms DOI

GitHub Discussion Gitter Scikit-HEP SPEC 4 โ€” Using and Creating Nightly Wheels

Python bindings for Boost::Histogram (source), a C++14 library. This is one of the fastest libraries for histogramming, while still providing the power of a full histogram object. See what's new.

Other members of the boost-histogram family include:

  • Hist: The first-party analyst-friendly histogram library that extends boost-histogram with named axes, many new shortcuts including UHI+, plotting shortcuts, and more.
  • UHI: Specification for Histogram library interop, especially for plotting.
  • mplhep: Plotting extension for matplotlib with support for UHI histograms.
  • histoprint: Histogram display library for the command line with support for UHI.
  • dask-histogram: Dask support for boost-histogram.

Usage

Slideshow of features. See expandable text below if the image is not readable.

Text intro (click to expand)
import boost_histogram as bh

# Compose axis however you like; this is a 2D histogram
hist = bh.Histogram(
    bh.axis.Regular(2, 0, 1),
    bh.axis.Regular(4, 0.0, 1.0),
)

# Filling can be done with arrays, one per dimension
hist.fill(
    [0.3, 0.5, 0.2],
    [0.1, 0.4, 0.9],
)

# NumPy array view into histogram counts, no overflow bins
values = hist.values()

# Make a new histogram with just the second axis, summing over the first, and
# rebinning the second into larger bins:
h2 = hist[::sum, :: bh.rebin(2)]

We support the uhi PlottableHistogram protocol, so boost-histogram/Hist histograms can be plotted via any compatible library, such as mplhep.

Cheatsheet

Simplified list of features (click to expand)
  • Many axis types (all support metadata=...)
    • bh.axis.Regular(n, start, stop, ...): Make a regular axis. Options listed below.
      • overflow=False: Turn off overflow bin
      • underflow=False: Turn off underflow bin
      • growth=True: Turn on growing axis, bins added when out-of-range items added
      • circular=True: Turn on wrapping, so that out-of-range values wrap around into the axis
      • transform=bh.axis.transform.Log: Log spacing
      • transform=bh.axis.transform.Sqrt: Square root spacing
      • transform=bh.axis.transform.Pow(v): Power spacing
      • See also the flexible Function transform
    • bh.axis.Integer(start, stop, *, underflow=True, overflow=True, growth=False, circular=False): Special high-speed version of regular for evenly spaced bins of width 1
    • bh.axis.Variable([start, edge1, edge2, ..., stop], *, underflow=True, overflow=True, circular=False): Uneven bin spacing
    • bh.axis.IntCategory([...], *, growth=False): Integer categories
    • bh.axis.StrCategory([...], *, growth=False): String categories
    • bh.axis.Boolean(): A True/False axis
  • Axis features:
    • .index(value): The index at a point (or points) on the axis
    • .value(index): The value for a fractional bin (or bins) in the axis
    • .bin(i): The bin edges (continuous axis) or a bin value (discrete axis)
    • .centers: The N bin centers (if continuous)
    • .edges: The N+1 bin edges (if continuous)
    • .extent: The number of bins (including under/overflow)
    • .metadata: Anything a user wants to store
    • .traits: The options set on the axis
    • .size: The number of bins (not including under/overflow)
    • .widths: The N bin widths
  • Many storage types
    • bh.storage.Double(): Doubles for weighted values (default)
    • bh.storage.Int64(): 64-bit unsigned integers
    • bh.storage.Unlimited(): Starts small, but can go up to unlimited precision ints or doubles.
    • bh.storage.AtomicInt64(): Threadsafe filling, experimental. Does not support growing axis in threads.
    • bh.storage.Weight(): Stores a weight and sum of weights squared.
    • bh.storage.Mean(): Accepts a sample and computes the mean of the samples (profile).
    • bh.storage.WeightedMean(): Accepts a sample and a weight. It computes the weighted mean of the samples.
  • Accumulators
    • bh.accumulator.Sum: High accuracy sum (Neumaier) - used by the sum method when summing a numerical histogram
    • bh.accumulator.WeightedSum: Tracks a weighted sum and variance
    • bh.accumulator.Mean: Running count, mean, and variance (Welfords's incremental algorithm)
    • bh.accumulator.WeightedMean: Tracks a weighted sum, mean, and variance (West's incremental algorithm)
  • Histogram operations
    • h.ndim: The number of dimensions
    • h.size or len(h): The number of bins
    • +: Add two histograms (storages must match types currently)
    • *=: Multiply by a scaler (not all storages) (hist * scalar and scalar * hist supported too)
    • /=: Divide by a scaler (not all storages) (hist / scalar supported too)
    • .kind: Either bh.Kind.COUNT or bh.Kind.MEAN, depending on storage
    • .storage_type: Fetch the histogram storage type
    • .sum(flow=False): The total count of all bins
    • .project(ax1, ax2, ...): Project down to listed axis (numbers). Can also reorder axes.
    • .to_numpy(flow=False, view=False): Convert to a NumPy style tuple (with or without under/overflow bins)
    • .view(flow=False): Get a view on the bin contents (with or without under/overflow bins)
    • .values(flow=False): Get a view on the values (counts or means, depending on storage)
    • .variances(flow=False): Get the variances if available
    • .counts(flow=False): Get the effective counts for all storage types
    • .reset(): Set counters to 0 (growing axis remain the same size)
    • .empty(flow=False): Check to see if the histogram is empty (can check flow bins too if asked)
    • .copy(deep=False): Make a copy of a histogram
    • .axes: Get the axes as a tuple-like (all properties of axes are available too)
      • .axes[0]: Get the 0th axis
      • .axes.edges: The lower values as a broadcasting-ready array
      • .axes.centers: The centers of the bins broadcasting-ready array
      • .axes.widths: The bin widths as a broadcasting-ready array
      • .axes.metadata: A tuple of the axes metadata
      • .axes.size: A tuple of the axes sizes (size without flow)
      • .axes.extent: A tuple of the axes extents (size with flow)
      • .axes.bin(*args): Returns the bin edges as a tuple of pairs (continuous axis) or values (describe)
      • .axes.index(*args): Returns the bin index at a value for each axis
      • .axes.value(*args): Returns the bin value at an index for each axis
  • Indexing - Supports UHI Indexing
    • Bin content access / setting
      • v = h[b]: Access bin content by index number
      • v = h[{0:b}]: All actions can be represented by axis:item dictionary instead of by position (mostly useful for slicing)
    • Slicing to get histogram or set array of values
      • h2 = h[a:b]: Access a slice of a histogram, cut portions go to flow bins if present
      • h2 = h[:, ...]: Using : and ... supported just like NumPy
      • h2 = h[::sum]: Third item in slice is the "action"
      • h[...] = array: Set the bin contents, either include or omit flow bins
    • Special accessors
      • bh.loc(v): Supply value in axis coordinates instead of bin number
      • bh.underflow: The underflow bin (use empty beginning on slice for slicing instead)
      • bh.overflow: The overflow bin (use empty end on slice for slicing instead)
    • Special actions (third item in slice)
      • sum: Remove axes via projection; if limits are given, use those
      • bh.rebin(n): Rebin an axis
  • NumPy compatibility
    • bh.numpy provides faster drop in replacements for NumPy histogram functions
    • Histograms follow the buffer interface, and provide .view()
    • Histograms can be converted to NumPy style output tuple with .to_numpy()
  • Details
    • All objects support copy/deepcopy/pickle
    • Fully statically typed, tested with MyPy.

Installation

You can install this library from PyPI with pip:

python3 -m pip install boost-histogram

All the normal best-practices for Python apply; Pip should not be very old (Pip 9 is very old), you should be in a virtual environment, etc. Python 3.10+ is required; for older versions of Python (3.5 and 2.7), 0.13 will be installed instead, which is API equivalent to 1.0, but will not be gaining new features. 1.3.x was the last series to support Python 3.6. 1.4.x was the last series to support Python 3.7. 1.5.x was the last series to support Python 3.8. 1.6.x was the last to support Python 3.9.

Binaries available:

The easiest way to get boost-histogram is to use a binary wheel, which happens when you run the above command on a supported platform. Wheels are produced using cibuildwheel; all common platforms have wheels provided in boost-histogram:

System Arch Python versions PyPy versions GraalPy versions
manylinux 64-bit 3.10, 3.11, 3.12, 3.13, 3.13t, 3.14, 3.14t 3.11 24.2, 25.0
manylinux ARM64 3.10, 3.11, 3.12, 3.13, 3.13t, 3.14, 3.14t 3.11 24.2, 25.0
musllinux 64-bit 3.10, 3.11, 3.12, 3.13, 3.13t, 3.14, 3.14t
macOS 64-bit 3.10, 3.11, 3.12, 3.13, 3.13t, 3.14, 3.14t 3.11 24.2, 25.0
macOS Arm64 3.10, 3.11, 3.12, 3.13, 3.13t, 3.14, 3.14t 3.11 24.2, 25.0
Windows 32-bit 3.10, 3.11, 3.12, 3.13, 3.13t, 3.14, 3.14t
Windows 64-bit 3.10, 3.11, 3.12, 3.13, 3.13t, 3.14, 3.14t 3.11 24.2, 25.0
Windows ARM64 3.11, 3.12, 3.13, 3.13t, 3.14, 3.14t
iOS Device 3.13, 3.14
iOS AS Sim 3.13, 3.14
iOS Intel 3.13, 3.14

PowerPC, IBM-Z, and RISC-V wheels are not provided but are available on request.

If you are on a Linux system that is not part of the "many" in manylinux or musl in musllinux, such as ClearLinux, building from source is usually fine, since the compilers on those systems are often quite new. It will just take longer to install when it is using the sdist instead of a wheel. All dependencies are header-only and included.

Conda-Forge

The boost-histogram package is available on conda-forge, as well. All supported variants are available.

conda install -c conda-forge boost-histogram

Source builds

For a source build, for example from an "SDist" package, the only requirements are a C++14 compatible compiler. The compiler requirements are dictated by Boost.Histogram's C++ requirements: gcc >= 5.5, clang >= 3.8, or msvc >= 14.1.

Boost is not required or needed (this only depends on included header-only dependencies). You can install directly from GitHub if you would like.

python -m pip install git+https://github.com/scikit-hep/boost-histogram.git@develop

Developing

See CONTRIBUTING.md for details on how to set up a development environment.

Contributors

We would like to acknowledge the contributors that made this project possible (emoji key):

Henry Schreiner
Henry Schreiner

๐Ÿšง ๐Ÿ’ป ๐Ÿ“–
Hans Dembinski
Hans Dembinski

๐Ÿšง ๐Ÿ’ป
N!no
N!no

โš ๏ธ ๐Ÿ“–
Jim Pivarski
Jim Pivarski

๐Ÿค”
Nicholas Smith
Nicholas Smith

๐Ÿ›
physicscitizen
physicscitizen

๐Ÿ›
Chanchal Kumar Maji
Chanchal Kumar Maji

๐Ÿ“–
Doug Davis
Doug Davis

๐Ÿ›
Pierre Grimaud
Pierre Grimaud

๐Ÿ“–
Beojan Stanislaus
Beojan Stanislaus

๐Ÿ›
Popinaodude
Popinaodude

๐Ÿ›
Congqiao Li
Congqiao Li

๐Ÿ›
alexander-held
alexander-held

๐Ÿ›
Chris Burr
Chris Burr

๐Ÿ“–
Konstantin Gizdov
Konstantin Gizdov

๐Ÿ“ฆ ๐Ÿ›
Kyle Cranmer
Kyle Cranmer

๐Ÿ“–
Aman Goel
Aman Goel

๐Ÿ“– ๐Ÿ’ป
Jay Gohil
Jay Gohil

๐Ÿ“–
Peter Fackeldey
Peter Fackeldey

๐Ÿ’ป
Jonas Eschle
Jonas Eschle

๐Ÿ’ป
Saransh Chopra
Saransh Chopra

๐Ÿ’ป
Matthew Feickert
Matthew Feickert

๐Ÿ’ป
Andrzej Novak
Andrzej Novak

๐Ÿ’ป
Dmitry Kalinkin
Dmitry Kalinkin

๐Ÿ’ป
Kilian Lieret
Kilian Lieret

๐Ÿ“–
Marcel Rieger
Marcel Rieger

๐Ÿ’ป
Florian Harz
Florian Harz

๐Ÿ’ป

This project follows the all-contributors specification.

Talks and other documentation/tutorial sources

The official documentation is here, and includes a quickstart.


Acknowledgements

This library was primarily developed by Henry Schreiner and Hans Dembinski.

Support for this work was provided by the National Science Foundation cooperative agreement OAC-1836650 (IRIS-HEP) and OAC-1450377 (DIANA/HEP). Any opinions, findings, conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect the views of the National Science Foundation.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

boost_histogram-1.7.2.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

boost_histogram-1.7.2-pp311-pypy311_pp73-win_amd64.whl (877.9 kB view details)

Uploaded PyPyWindows x86-64

boost_histogram-1.7.2-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

boost_histogram-1.7.2-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

boost_histogram-1.7.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

boost_histogram-1.7.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

boost_histogram-1.7.2-graalpy312-graalpy250_312_native-win_amd64.whl (957.4 kB view details)

Uploaded Windows x86-64graalpy312

boost_histogram-1.7.2-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded graalpy312manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

boost_histogram-1.7.2-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded graalpy312manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

boost_histogram-1.7.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded graalpy312macOS 11.0+ ARM64

boost_histogram-1.7.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (1.2 MB view details)

Uploaded graalpy312macOS 10.13+ x86-64

boost_histogram-1.7.2-graalpy311-graalpy242_311_native-win_amd64.whl (886.0 kB view details)

Uploaded Windows x86-64graalpy311

boost_histogram-1.7.2-graalpy311-graalpy242_311_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded graalpy311manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

boost_histogram-1.7.2-graalpy311-graalpy242_311_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded graalpy311manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

boost_histogram-1.7.2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded graalpy311macOS 11.0+ ARM64

boost_histogram-1.7.2-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded graalpy311macOS 10.9+ x86-64

boost_histogram-1.7.2-cp314-cp314t-win_arm64.whl (892.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

boost_histogram-1.7.2-cp314-cp314t-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

boost_histogram-1.7.2-cp314-cp314t-win32.whl (727.4 kB view details)

Uploaded CPython 3.14tWindows x86

boost_histogram-1.7.2-cp314-cp314t-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

boost_histogram-1.7.2-cp314-cp314t-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

boost_histogram-1.7.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

boost_histogram-1.7.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

boost_histogram-1.7.2-cp314-cp314t-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

boost_histogram-1.7.2-cp314-cp314t-macosx_10_15_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

boost_histogram-1.7.2-cp314-cp314-win_arm64.whl (847.0 kB view details)

Uploaded CPython 3.14Windows ARM64

boost_histogram-1.7.2-cp314-cp314-win_amd64.whl (919.9 kB view details)

Uploaded CPython 3.14Windows x86-64

boost_histogram-1.7.2-cp314-cp314-win32.whl (660.5 kB view details)

Uploaded CPython 3.14Windows x86

boost_histogram-1.7.2-cp314-cp314-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

boost_histogram-1.7.2-cp314-cp314-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

boost_histogram-1.7.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

boost_histogram-1.7.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

boost_histogram-1.7.2-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

boost_histogram-1.7.2-cp314-cp314-macosx_10_15_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

boost_histogram-1.7.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (1.2 MB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

boost_histogram-1.7.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (1.0 MB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

boost_histogram-1.7.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl (995.6 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

boost_histogram-1.7.2-cp313-cp313-win_arm64.whl (827.0 kB view details)

Uploaded CPython 3.13Windows ARM64

boost_histogram-1.7.2-cp313-cp313-win_amd64.whl (890.4 kB view details)

Uploaded CPython 3.13Windows x86-64

boost_histogram-1.7.2-cp313-cp313-win32.whl (651.7 kB view details)

Uploaded CPython 3.13Windows x86

boost_histogram-1.7.2-cp313-cp313-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

boost_histogram-1.7.2-cp313-cp313-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

boost_histogram-1.7.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

boost_histogram-1.7.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

boost_histogram-1.7.2-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

boost_histogram-1.7.2-cp313-cp313-macosx_10_13_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

boost_histogram-1.7.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (1.2 MB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

boost_histogram-1.7.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (1.0 MB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

boost_histogram-1.7.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl (990.9 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

boost_histogram-1.7.2-cp312-cp312-win_arm64.whl (826.9 kB view details)

Uploaded CPython 3.12Windows ARM64

boost_histogram-1.7.2-cp312-cp312-win_amd64.whl (890.7 kB view details)

Uploaded CPython 3.12Windows x86-64

boost_histogram-1.7.2-cp312-cp312-win32.whl (650.9 kB view details)

Uploaded CPython 3.12Windows x86

boost_histogram-1.7.2-cp312-cp312-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

boost_histogram-1.7.2-cp312-cp312-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

boost_histogram-1.7.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

boost_histogram-1.7.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

boost_histogram-1.7.2-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

boost_histogram-1.7.2-cp312-cp312-macosx_10_13_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

boost_histogram-1.7.2-cp311-cp311-win_arm64.whl (822.4 kB view details)

Uploaded CPython 3.11Windows ARM64

boost_histogram-1.7.2-cp311-cp311-win_amd64.whl (877.6 kB view details)

Uploaded CPython 3.11Windows x86-64

boost_histogram-1.7.2-cp311-cp311-win32.whl (647.5 kB view details)

Uploaded CPython 3.11Windows x86

boost_histogram-1.7.2-cp311-cp311-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

boost_histogram-1.7.2-cp311-cp311-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

boost_histogram-1.7.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

boost_histogram-1.7.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

boost_histogram-1.7.2-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

boost_histogram-1.7.2-cp311-cp311-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

boost_histogram-1.7.2-cp310-cp310-win_arm64.whl (820.6 kB view details)

Uploaded CPython 3.10Windows ARM64

boost_histogram-1.7.2-cp310-cp310-win_amd64.whl (875.7 kB view details)

Uploaded CPython 3.10Windows x86-64

boost_histogram-1.7.2-cp310-cp310-win32.whl (646.6 kB view details)

Uploaded CPython 3.10Windows x86

boost_histogram-1.7.2-cp310-cp310-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

boost_histogram-1.7.2-cp310-cp310-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

boost_histogram-1.7.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

boost_histogram-1.7.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

boost_histogram-1.7.2-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

boost_histogram-1.7.2-cp310-cp310-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file boost_histogram-1.7.2.tar.gz.

File metadata

  • Download URL: boost_histogram-1.7.2.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for boost_histogram-1.7.2.tar.gz
Algorithm Hash digest
SHA256 18c5e80e1867114a871adb3515bb9f94d5da2938c4d46171e3a03d7eb136e3be
MD5 0becb93e81065e5a2592b5d2e622ae91
BLAKE2b-256 ad236f15693933ff45b40ddb47f06cfde0a5780f21488196660b745aa29e1d6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2.tar.gz:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8abc07a868801f655013cf09522bc87cd8d661436928d92208ec1e5388d8c842
MD5 eac84e5c7720b5dc6b4322837c4e4fa6
BLAKE2b-256 0ff40b41ba697920caac8c241518a99b7ca0832c477eb0740440171496988d50

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-pp311-pypy311_pp73-win_amd64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24cc0cd52f6dd53f7db20497d14fc107c085045db6ab0fb00410bbda98440f53
MD5 c9b7da74b76870db5edd894c7703b4e8
BLAKE2b-256 e4c7c19b4cd85a32df3572bc3b2e2884e0aeffa6021c16802254f83508c1b61b

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d105db8ce5f8ebb3e3ad70e5e26d96d189f755efdf46724ffe359f06aa6f2dad
MD5 7d68babe018db082f99d660d96e82fec
BLAKE2b-256 1bfe033c858484c395943087f08c271341a4a812eb263691c947ce2550f72be5

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ffce3ba934a7ae008e840e69cf72ec58c152604a58717df16d3128959a44034
MD5 d77cf8d34e3a9676c73c424b52f8c322
BLAKE2b-256 3d7ae5c19dcb11a96975630f4b441f7c16cb40695bfe46c20a053f56edf3b063

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0bbc1b1e334b7a6b58de75a8cce2019f0034a2f1fd0613fcba0e12939b02118b
MD5 d9ec8a8e7f2c7a5985fbd32866d30d03
BLAKE2b-256 15efb8d1caed295d8e73b46e3729ce94932ca2dfe2c6d7aabef93b7ab777aa42

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-graalpy312-graalpy250_312_native-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 14d8f127576de9c2677b9803f9949f523812d894917c75d9725de61c30ec36d7
MD5 158c285cdb34f16618c5a47994144f3e
BLAKE2b-256 759cc1c61ccccbb1866c11be53b7c9ce37dbf8cf6bed3f5666940e6e4142fbbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-graalpy312-graalpy250_312_native-win_amd64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e16b842582b90d910eeaff334fceacb8b70481b15c21bc5f131a4e82873d8ead
MD5 7d78a43c18937b670b417b4c2db87612
BLAKE2b-256 9029ea6d1d66a9f9ece395803359ec8d7ad116a0cec89ddb87205f54b813d145

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 efbc6a975b7df4baa80d6edb7a216ab76c5908d6ce6ec60774205a3a2787ba6b
MD5 87bd83ffb2ff05c820c2373673b0dcca
BLAKE2b-256 eb5d0c1637446393814cdf694c8b92f6b533d85ac13a54dd5df2a7fc2ae4f4db

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcfcb7888ad29955b2491e6447ff6a0dbee59c1af099dc77f3d40b38d618a6c5
MD5 cb6753c5a8517ef5ca0e5f026a9ba77a
BLAKE2b-256 be20b5341e4f90d0bcff09ba881812f7ea462d5def6432103a31e39e181ede31

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d935132522706117ac74f807e6c2f831ff1c5fd56ed64504b3e9002fe590af67
MD5 e9af78c5c07af9937ca8a6e51560ebb9
BLAKE2b-256 3099c970d76bd7ce4e6a09203261e194f5447837a14f5b5a9ad8c2abcd415261

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-graalpy311-graalpy242_311_native-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-graalpy311-graalpy242_311_native-win_amd64.whl
Algorithm Hash digest
SHA256 4db022e9ba1a344535c72803c2ed255422487aa1004521804c6ea40c183549f2
MD5 cda79c8ef2ff50236ab17ebf31d7fa38
BLAKE2b-256 437f2762c146871940a5adf51ef382e3ab093e1c27713b1b5a672cfbfb41aa06

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-graalpy311-graalpy242_311_native-win_amd64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-graalpy311-graalpy242_311_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-graalpy311-graalpy242_311_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e67b8990e9b4127eca6eea4b10ee294ce68e9dc0909b0f24ff499ead7458247d
MD5 40b27815adea0ab9c54fc8346dfe76ec
BLAKE2b-256 21295ad843361c10ff5da9d6e1974d004d498e5896921474ab1b79fb9b9ba20b

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-graalpy311-graalpy242_311_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-graalpy311-graalpy242_311_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-graalpy311-graalpy242_311_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6e16ace7dddd4684d06d80175d1e047a0e621f84d0e340b52038537f675a9141
MD5 2f6b0d85f2ae7408c0b2faec8273f781
BLAKE2b-256 faed849cf585dabd9fb0171b85bb9effa758e495f812b7c4e24cfbddbc059cd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-graalpy311-graalpy242_311_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c3406405d735fdc71f813305ad2a27aa03e9e757f125223dcc123fd5216e0d5
MD5 4df54f8167d4916f8574ea7bf449752f
BLAKE2b-256 ac5d868da2234edb46e3d07d0d046268b2f1b1a9a2ddb9f0b6b1b90aff5a368c

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d96243fdf4f768468bf7e2e74d3b3d7f358e89a04071977285afaa5f17f8d19
MD5 777d4b45769118383564163753b3ad42
BLAKE2b-256 fa2e43898a1f7ad67bb7e7edacd0ca1511f3a8cfc5ed95e140974a8fd35832f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 49a67aeb475ff9f69bd9fe7427832645c0a277e3c63bcaebf0324f55f4dbec79
MD5 be651fa369ba2a478f23bfb112353ae1
BLAKE2b-256 5d88767315179cc620278fece6a4031fca09a1b49281246717e6288505a34afb

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314t-win_arm64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 75a80b9ccbbb580fed93ebab37f10cf478a07265d3a3d080af62ddcbd9ecdabd
MD5 84ddd9588ea984dfdf1348eb5d43b2ea
BLAKE2b-256 ec792140592e625db7b66a58ec45c7e7fd77696c057d952814d356691063a945

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3d211e959dc8700047623b1a3b158875cb0185f9eca92d9741fec6fb234bfc9c
MD5 097135327e3cd3dea642a7daa0a14353
BLAKE2b-256 a01b488e2799cae19af10a9d2ee1877027f96c09b4f4861decd062c8f34cf4f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314t-win32.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31638f9c80c6abe5f07b4628d56499494a625644db88dc113f98f71a9aaed6e4
MD5 ebda89934c85839d06bc078750b8e464
BLAKE2b-256 d7b51d82d95737b5b779de6dc990f54c0ab4494763c040a7ac99be064399298b

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37b51861c271c47c83549155276bbb44d803580c25a0f092c65ddd27adefe674
MD5 8b007a023b91d4e78ebe80db9c9ffcf7
BLAKE2b-256 680e90cd4d634a795e461a337c2bc9f87cb9a8eb0fa9c6a534d9143ce4b67c75

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b37bfd289021e0b87cc376d60ea195d84c9fe065cb6116b088f9e6efd39c150e
MD5 1845280668072fa86e0aa1b3f4321dc1
BLAKE2b-256 7314de387265f5259a529bd374560cb7f45136a56c4b63abb4785578710c9f43

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d2d7b13544086d0bd3dbe0e9b19b927cc45be1e90f417bde96e1bfd8457b0a44
MD5 69d93d25495be9dde02f310dd5c1fbd3
BLAKE2b-256 addcf5a7be40966f5404dd9032a15763666fe5a84dc98baa52dd275f6ccd5e43

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da7c2084714d6c728dad8ed78f51939761c80bded479e50f46604c86487bdff8
MD5 7655c4b19241da7c42722e492bc8be29
BLAKE2b-256 96aee7f36138cb4ee9c87885d086ba38e348be067e13886b9c4c284d522c8383

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6e2823b49685758d9c9f7f3860d0767983d75ee8157c2f5c09e3b49844fbfd4b
MD5 5c9ac2f549992f1c469aae7fb47d7146
BLAKE2b-256 bc73374201786b3a5173cf78b6338149083de6e195b724ecd29fab49ec708388

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 188390d53cad612aa9a4f0f9ce4d5f77811935e32984d365e33e3542414735e4
MD5 acf1a8c1bb91ff3d97eda329c0c2d24a
BLAKE2b-256 a8103d0eabb7722ecdca1bef482c3aae2f2a161ed9a39ade4381037ff1622778

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314-win_arm64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0fda25726ffee7c6ac42f2c919d5dbefcc2355e097a5682775750723706eb22d
MD5 a55d702f20eac091bb5b22eb5658bf44
BLAKE2b-256 38fe6834bb7572fdb9701b93f533cdda7f7c80d7c8543ca5522755bd04e2c1eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cbc9b48d94950a464c9d5059071286a48fc4c2cd88ee511ccee3bea4b0cc89c5
MD5 ff507a4a19b1110644f36ca4af45e715
BLAKE2b-256 3a2493451efc8ece73170914282d4d382bdb9be650a6841b032463ae2c58e4bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314-win32.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed2dbd76730a9b4f6d806d0415806b5c9343d0c3bf2a769ed021e6e10105f26c
MD5 4a3e80470612c534dc1e9f38d3af0514
BLAKE2b-256 1874a7500459fff27c4238ad3b0149ced43ce607c46f89ef6ca2810b9dc5666d

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c32c9f6d860630d56430340c42103d7fc48087466ecb2b67c48b9701cdddd9ef
MD5 2cfdfadce6092b5f56c687134d9eb6d1
BLAKE2b-256 f2657229f58aedb16b875ec8e639f3c5cb0c5ef03d4b44b450f4d91b12d384a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2fe147c8499a968428763647697873d3cb27b5c0b8db9558d4496e966f7fe381
MD5 a828bb95a43596754dfa2ec0045f24e6
BLAKE2b-256 42623077f44630982bcab26988a9471d9ed8724dae316ea69f6bb9b77d7ca1c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ff369961de33889d02b05b8cddb8fb2aab96f47a78df30cd0c0603d4f8c7918
MD5 c27c90f53b4f200a08d2bbb1feb5ef00
BLAKE2b-256 d5502c6079714931e435d3272c82cd2c15ae693579f19336d9a117fa1a80b955

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff08cc00905b9723f56d3b63c8324fc9472f68354f1c5160148013f0734e1b10
MD5 8787636e788d2c1209c3eed50e6c90ce
BLAKE2b-256 7033ee740e45182cec41e3ad579d62d6eabfaa6f36b600b33df1914657552ad5

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 19082066c5b397b59a4be5fa4ad6ee5759060f789f3ca8ab66540e83856d0a2f
MD5 3ff1249da1e666cbfc152d2d5be778ae
BLAKE2b-256 fcdfbf75ad975c4aef6c19ff5ae5ef11c2b0fc0e6beba0f5ecdd09755cc12a0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 a4d87f249d00e471e665516d69ee9ad9b4e9c74dd5105e5db6987bc686a32d59
MD5 3cd7fa43e167efa5ba13cb44f8ef961b
BLAKE2b-256 837448d6c211c4bd30a69a78110b98a1af7d28fb9bb6cc50c2bcd9040a6b1f31

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 66781ac74254aa8c015226ce91f3a3dd6a1de4e2ec14537e6dd460c802b166a2
MD5 b0484fb58b796d156f9be1fecc0c44d8
BLAKE2b-256 7a3d0356fb2721398bcba6a452b3dff7187566760929ae796488a92e8c35d597

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 7fa89bd142fef171beb80006440cf820663f2b8c6dfd773e77ed1d5ac422cd49
MD5 53c2bdbd0d4d841f502a4eca2ddb309e
BLAKE2b-256 037a30e529a595a37d37f4a35ec7faf920f691e44ecfdcfb76b0959f656f27a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4444bc95db3ff56c2824f269416358580a36a51d4823607680dcb159433283ca
MD5 f46de81001762ea7770271d338713524
BLAKE2b-256 0fc2285e1402d151a769c96449fb315f48e8c16e0467d95c3d2e752435c68272

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp313-cp313-win_arm64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3a092758a2004161ffee70dcb7d956372fe57bee15f8469e57f93f11342342e3
MD5 49a6a9bbd1304f8991d2b4fb27bd8233
BLAKE2b-256 f437f19c0a860bf95910c8a8233311e633fb087bead45a29de19cce2f2a2f777

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d362b77b63dd219da8d62b81754665924d0db81ea26943960eef154772311c93
MD5 6e8251530235d3fa6d178691f6266fba
BLAKE2b-256 d363a4fb6ea29f0308f26ef226a9b249f5c2bd6e10d0579a9238017581d9dea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp313-cp313-win32.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a84c3e0501a3adf4fb2e844132517ce8ee95c5d40a9c190f7d7e518e3893ce6
MD5 b03d858dca44da2b83688a79be933b15
BLAKE2b-256 888a16e11f25ace21e12a1d102e3f827984f45f9c0e5d43a0fce3d01c75b5cab

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ed21bc579951fd0351337e71f8d40eff370ad76afecd2e546bff39703692c04
MD5 d8f81d09840b85f3e1bc18b8555c0f56
BLAKE2b-256 200c605704cde0a241bae5ac602ca504f53708d8b4e8247515576d27beb0cbae

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 732be426e1a57daa094273f9b38fb3a6af7a03ca9bdc981e74b2e69ad8c0ec91
MD5 f66e963fa6e7635568918985d2636f51
BLAKE2b-256 600a771ea36b71c14c5f74c2d7af5115bfe6e7d49fb29b5631a7a25371ab0305

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 adcbc1a921798f81009c2427f1a4f06aa65453d4858edb781a0e61350bc214d0
MD5 cb97493f0be2e44d1cf627f55edef594
BLAKE2b-256 2bc44be2fef3c456f9b6e2d3fd9b14a77f5d848ffea755ce133c1ece6360112d

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb513e96bcdd47981ad2f27dac7b9edb7b480448ac535bf618c644a62ff5471f
MD5 e843fcdff00e9e7579d17ead78897819
BLAKE2b-256 994b210e7077d037ba0c199620f02e0ba955df0228a94603403af9e0d3a99a94

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 527a10465d1a07e7944baa04721b3aefee3f3985a7c186bef53be99d573d09f9
MD5 c8c4dbf1aa7d83dc6bbf487116d7a0d7
BLAKE2b-256 c1e3b206ef920fb86c69e8263f193a598ef8d246f01642cb07ac856dcf202b7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 5e8ebda302156f95fbbcc0144c29715ca1048a46410fbf2a2fd47d335f8c72d1
MD5 206494c18ff887927ec753b67b3451e5
BLAKE2b-256 bcee78b359e393d29a97332d123f0288b79748ba8b4588d3d48f8edfc0aa731b

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 1a52d97fa2eeb761a65e4cdc44dac4fb641ac31785bd95d2b6d564075cfb4cbc
MD5 98a5a40da02b3516450856eb1f7f97d4
BLAKE2b-256 e58e0050d52f1ff1687c2e057f66e68982ed0e5bc518824621866b34d1fe8610

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 9cd2b57c93e76ad672de9d7f35bef76ad43a3f5ef5894765f6d6c496b22ec5a9
MD5 d0ee14409b783c1fc7b7a8ce93170ffb
BLAKE2b-256 78ab780366a67c1b7721bccfa5affdcd5c99d46193f40f25cab68cf13c8c8716

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 235d0f9829c6d001229fe02a3c4d2f8c4feb6cb9153d7e4176cca4e5911f1e86
MD5 4f5a7762295a3dad16a6d404aefb4e7d
BLAKE2b-256 8137235adaf7bb2d118f5cd5d73c480b20d15b305dd0b59d32010d3f919c4f2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp312-cp312-win_arm64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 87acd8a37f8cfa57d6e8dc354c9ffca930916f9dbab4d5d2672f972baea6c7d5
MD5 c2e7666df3c531a40cd3f1b94953c69f
BLAKE2b-256 ee9feb6c87acdb7eb9e6d1386f670c27b928eee9d19ef89ea34bb620d7f22e2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 22ffdffafdee6c4ecfc4de532aa570f74d16c6ce6da9d49332b589ca6247c218
MD5 1ba14bdb4dd427cf01a97fa6df799dfc
BLAKE2b-256 0e377ecd3318137e9912bab2bde8629356e420f2678c59c6e7fc15613fdfddf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp312-cp312-win32.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98da235c04bfa47fb864fe42f63cb233632fb05e31539def8ef471f3c4c21f2d
MD5 3e683ffae351e5576c5ebc4f171c7122
BLAKE2b-256 bb3bc356c34733ddcf5534fb91b23e93f3105953f13f7329451b6598986a8879

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 918677f2caf8b16625cddd3dc74be479acf1a8b366bf3e70518de9b4ff25f6c3
MD5 29db223f061285a1bb50064c26653607
BLAKE2b-256 a823deadd9d48f428f5d9cce84f5bccb1198f950a317086be74dd34261905ed8

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79b7d6f7c4b68d35b647456703c417f4241cccf49b650f900f329da0dd956484
MD5 dcf4cec366ee3a0b33450291433cae06
BLAKE2b-256 874dddb77cb97a4e23012c315b53444e77a1c791d42b2255b9f4cdffd0c6ef11

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce10a8fe6a1074cd6b13275e68e530e44a7313d1a03ca8f535e72fff7c4c1034
MD5 a8df3f2e73643e96ed206ded19870107
BLAKE2b-256 224941d198b6b50843dc8b18a7c9b181ddd2f43ecd0214f3d18faf098f922379

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93fa937ca8dbc6a357046a9fdf6eb097c85170816021cfeb8fee254652555b9a
MD5 e8b973eec880fc37215400e101ba5faf
BLAKE2b-256 b479767352866e7690a862c8ac5b0e67b9c83d3a80f37a627a2111798966ae38

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e1d558b9e4cd1898c5c0e6ced0a305b6032f8dd4c158e9c61f8a327845a8a48d
MD5 1fe4fb862110c923bd5cda841618698b
BLAKE2b-256 edf92e5ce18d0ef9b2503e73b864e9fed7fd733c1577a854244cf09f9ef57394

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 70dfc87ff8c94e391d8ecc16fd53f99ade469420eb6b9d686aca4bcd2a3b25ae
MD5 d5ac698c9a1bd8ff4ba16c82a0b8de9c
BLAKE2b-256 4d74cd3536fa9b812fd929b38947a186f1cf3cf6877772a191dcfb530c514891

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp311-cp311-win_arm64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5dc63b8fbb0c2f09e0bda1cc30a91b8102da305866b81bf262b896d8da33d956
MD5 ea0ad9eb8d38e19d45e8885904b29f31
BLAKE2b-256 8617438e1e870c5d52ecfd27b5beeaebeb1172c6c7fd3db272c832c9167fd362

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bf6d536e93f728354e50903a9aebd4dc30d2522d81544ae2a351baa229ee6e0b
MD5 25afecaf6a16e03a340a67e02d33da4a
BLAKE2b-256 104e2acd0f075142913f452ae3d54a42370946c5a7292c16b1f0728330568ad5

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp311-cp311-win32.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 224552cd07362927f6ea71df3da11212716782b795484754a01f729d9c0618ac
MD5 ddd2671212d84c28ce1ad8725cff9e28
BLAKE2b-256 81a91ad7db67c9ef61d96e1ee506f284258f449240c719245f3c78cf15c86d25

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 43d5e41f33ed36f7b0a6f32fd43ecfc8fe6a4c96ff7d5ad56b992f5df41915d9
MD5 8d480cddf3080e1b8807b893af7d8e3b
BLAKE2b-256 0571db11e208b1c1c44dd7bb5fde5123697cc44498f288b6509ed58ab47bb59d

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 daaa21655f356da7d1ae41bc48bcb37c4d5182e85532e65382b0e16afc2f63f4
MD5 33aacac8b93c20f68d45de7f1f109b5a
BLAKE2b-256 2a6ccc7ae69d7533ae2cd666244a85075f4cfc97241beb6e6de883d38cd2b0b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2734e5558ddefedf434d2e463a0cddb82c17a8b2931731a180b7e6acede19bd4
MD5 58f42d9fc8e74abb5232f98ce8c64ec4
BLAKE2b-256 429bf3b406f814813d8c90cc2188b74296281e48a6bf35565a10ab9fc1427a2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 704aa29ffa16549882030dc3b95da561bea07cc5f22f1d5f9f33c9650c1a69ff
MD5 72954841de2b9ddff361c4e6f8af959e
BLAKE2b-256 7cdc82ec17367b0f29a1b9d294bf380822f9e46c2a233309104c7ce3ea7c21c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 129960e76578919e4b5d571bacebd3edf3166f0f7b369f987e57785159c1f1f7
MD5 6f24da78ce6e13b3fb8cdb3f58b1b1f4
BLAKE2b-256 ddd068673700a503870ab978d34696d94b4abcf6f6e49a1006fab6dce53a68c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 64bb4e2dde5a34133932980597968fe2fdc2ce7fd470770e25f6a64fc6284617
MD5 9bc778f9e6bcabed33be7151967619bf
BLAKE2b-256 e1ce48a25f4651fa949add06d6ed4f4399258a8a79b1c99006805d27a3beeffb

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp310-cp310-win_arm64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f49b772a29b1acc148b2d52692fbc9c56260c2fd25bd7ee8af35b320dea35018
MD5 389e787bdb0b569102b69e3b59799996
BLAKE2b-256 8067e2f76d4d75e5803b0dfae5a71bc0a6907b3b417831d64185701e57b43016

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 41f01101daf769e5846745ec76a211c03a28632c9c1cf13766f8b039e1bd8667
MD5 68be22f43beafd2cdab74b46093ba504
BLAKE2b-256 03900623cdffae9304ef42ebac09d1ed59188a0b33bf98988c6e388a3aa044c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp310-cp310-win32.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cad2bd3b8935df2beb8ed6e59fe2a262616a1c1cb11fbf4c8a47b38fef14941e
MD5 db857d4fa84fb3cd6dbf4c3138dea869
BLAKE2b-256 10cd0f060b8899b46cc0931509176bd92c78204a21e6f67251cf9b46ad494887

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3919bf234e6e04a4859631205ca9579d11921a40c3f439feee7bb20c54641a1b
MD5 c593963925772d7bd7645850672380fa
BLAKE2b-256 1460b87840a3e0368101db86714b9704cbc3335dc73925919cd6370936df3269

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 37e4992d6a38a903a10e33c62713b42a7075e41abd45fff21bf414735d7a713d
MD5 4c66a8dbd36d551394758acb8bb0b3d9
BLAKE2b-256 bdcf7bd4bf8379aa5a44318de99616d165075bc1bbacf3ac061bbcd27dabfa9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7639e34a71a3ba7811c3ba89e934bf0682309702e281b979149ea751a77fe06
MD5 a94c7ec058678c6900e451c854bc0875
BLAKE2b-256 10eb379093527534b233804656d3dc90ef9a8d575736f09472ad8290ae776398

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f936c30b59321e627cacaa6ae6eedc6e83d41b4a74d87810f6c16f0c18d0f6a
MD5 6f476fb012f39fc552f9323d93e2b5d0
BLAKE2b-256 297c3f591d0952cda577ac660e5b0a67d38cafc6728178fc5ba7cc959ac1a8b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file boost_histogram-1.7.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.7.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92806c9179b37abe12a83f7cab0d983321612673c91487a972a56c0aa86645bc
MD5 efaa2bf4249b5ca06e9aa5f9cd091714
BLAKE2b-256 5225f89d10f542b2acbd6d93a80dcffe566f08494915d5dc2c33332ff0c5bb5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.7.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on scikit-hep/boost-histogram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page