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

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.8+ 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.

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
manylinux2014 64-bit 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.13t 3.9, 3.10
manylinux2014 ARM64 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.13t 3.9, 3.10
musllinux_1_1 64-bit 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.13t
macOS 10.9+ Intel 64-bit 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.13t 3.9, 3.10
macOS 11+ AS Arm64 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.13t 3.9, 3.10
Windows 32-bit 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.13t
Windows 64-bit 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, 3.13t 3.9, 3.10

PowerPC or IBM-Z 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

🚧 💻 📖

Hans Dembinski

🚧 💻

N!no

⚠️ 📖

Jim Pivarski

🤔

Nicholas Smith

🐛

physicscitizen

🐛

Chanchal Kumar Maji

📖

Doug Davis

🐛

Pierre Grimaud

📖

Beojan Stanislaus

🐛

Popinaodude

🐛

Congqiao Li

🐛

alexander-held

🐛

Chris Burr

📖

Konstantin Gizdov

📦 🐛

Kyle Cranmer

📖

Aman Goel

📖 💻

Jay Gohil

📖

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.5.1.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.5.1-pp310-pypy310_pp73-win_amd64.whl (741.0 kB view details)

Uploaded PyPyWindows x86-64

boost_histogram-1.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

boost_histogram-1.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (994.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

boost_histogram-1.5.1-pp310-pypy310_pp73-macosx_14_0_arm64.whl (960.9 kB view details)

Uploaded PyPymacOS 14.0+ ARM64

boost_histogram-1.5.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

boost_histogram-1.5.1-pp39-pypy39_pp73-win_amd64.whl (741.1 kB view details)

Uploaded PyPyWindows x86-64

boost_histogram-1.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

boost_histogram-1.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (994.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

boost_histogram-1.5.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (961.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

boost_histogram-1.5.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

boost_histogram-1.5.1-cp313-cp313t-win_amd64.whl (854.3 kB view details)

Uploaded CPython 3.13tWindows x86-64

boost_histogram-1.5.1-cp313-cp313t-win32.whl (597.5 kB view details)

Uploaded CPython 3.13tWindows x86

boost_histogram-1.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

boost_histogram-1.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

boost_histogram-1.5.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

boost_histogram-1.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (984.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

boost_histogram-1.5.1-cp313-cp313-win_amd64.whl (749.9 kB view details)

Uploaded CPython 3.13Windows x86-64

boost_histogram-1.5.1-cp313-cp313-win32.whl (545.7 kB view details)

Uploaded CPython 3.13Windows x86

boost_histogram-1.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

boost_histogram-1.5.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

boost_histogram-1.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

boost_histogram-1.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (976.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

boost_histogram-1.5.1-cp313-cp313-macosx_11_0_arm64.whl (959.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

boost_histogram-1.5.1-cp313-cp313-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

boost_histogram-1.5.1-cp312-cp312-win_amd64.whl (750.0 kB view details)

Uploaded CPython 3.12Windows x86-64

boost_histogram-1.5.1-cp312-cp312-win32.whl (545.6 kB view details)

Uploaded CPython 3.12Windows x86

boost_histogram-1.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

boost_histogram-1.5.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

boost_histogram-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

boost_histogram-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (976.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

boost_histogram-1.5.1-cp312-cp312-macosx_11_0_arm64.whl (959.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

boost_histogram-1.5.1-cp312-cp312-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

boost_histogram-1.5.1-cp311-cp311-win_amd64.whl (740.9 kB view details)

Uploaded CPython 3.11Windows x86-64

boost_histogram-1.5.1-cp311-cp311-win32.whl (540.7 kB view details)

Uploaded CPython 3.11Windows x86

boost_histogram-1.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

boost_histogram-1.5.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

boost_histogram-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

boost_histogram-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (993.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

boost_histogram-1.5.1-cp311-cp311-macosx_11_0_arm64.whl (958.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

boost_histogram-1.5.1-cp310-cp310-win_amd64.whl (740.0 kB view details)

Uploaded CPython 3.10Windows x86-64

boost_histogram-1.5.1-cp310-cp310-win32.whl (539.8 kB view details)

Uploaded CPython 3.10Windows x86

boost_histogram-1.5.1-cp310-cp310-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

boost_histogram-1.5.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

boost_histogram-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

boost_histogram-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (993.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

boost_histogram-1.5.1-cp310-cp310-macosx_11_0_arm64.whl (957.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

boost_histogram-1.5.1-cp39-cp39-win_amd64.whl (839.4 kB view details)

Uploaded CPython 3.9Windows x86-64

boost_histogram-1.5.1-cp39-cp39-win32.whl (539.9 kB view details)

Uploaded CPython 3.9Windows x86

boost_histogram-1.5.1-cp39-cp39-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

boost_histogram-1.5.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

boost_histogram-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

boost_histogram-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (992.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

boost_histogram-1.5.1-cp39-cp39-macosx_11_0_arm64.whl (957.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

boost_histogram-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

boost_histogram-1.5.1-cp38-cp38-win_amd64.whl (740.1 kB view details)

Uploaded CPython 3.8Windows x86-64

boost_histogram-1.5.1-cp38-cp38-win32.whl (540.0 kB view details)

Uploaded CPython 3.8Windows x86

boost_histogram-1.5.1-cp38-cp38-musllinux_1_2_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

boost_histogram-1.5.1-cp38-cp38-musllinux_1_2_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

boost_histogram-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

boost_histogram-1.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (993.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

boost_histogram-1.5.1-cp38-cp38-macosx_11_0_arm64.whl (957.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

boost_histogram-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for boost_histogram-1.5.1.tar.gz
Algorithm Hash digest
SHA256 6e0f3dbdf7ab60ca1c61d5caa4f3f9e6097461feb65c6dbb01302fd88b1be524
MD5 64da350a5ec006b8f1e37196e44e6fce
BLAKE2b-256 787e9f0efea1e3199f2d9dfe12ebe03ffcc78497e1fac77cb1292dbc3472382d

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1.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.5.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2cdee1d4fb564cfc1077ee21b438ae184f6d2fe50399ec51bdfa51e11782da60
MD5 b7819306f0b6867b4d5a0bdac8d33716
BLAKE2b-256 f3f15423213411b52301cb02c82be3bba8472794f46988c2d74b59d035654982

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-pp310-pypy310_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.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6212d2d820c4ea63abb3900c36eb029b9ed656abccc88a3e65a5c9d6b809079
MD5 9195d91601c1944961eafd4330f13c3e
BLAKE2b-256 5e1988d3278d386316af43668173f45b0d1a4786da6a63906d61573d6a8853b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_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.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e38252af6c70c88d3c49a9ecb626aaf36f0f17bf6532bebe4c9f0e5cb51f7b9
MD5 fd1b3d306864181b6091b69ecc70fbb6
BLAKE2b-256 e0667f87e3fc4b093b4eb6faaa68188c654fedb601477a4bbe3b88df8396068e

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_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.5.1-pp310-pypy310_pp73-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-pp310-pypy310_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 a8e3a473e03d2789f511f59f0adb90ab942563f07e9fb9998945bf179f12dc9d
MD5 123eadc78d27adf3043bd839ceb50b55
BLAKE2b-256 8501db8aaae3b0515ce5819c25b690fee0799a765cf32eef3c6247bd2531f12f

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-pp310-pypy310_pp73-macosx_14_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.5.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b7a1793cf398c42ce66c1652e96e1744c133e15f9b8500c671023a7544dc4a16
MD5 74e2162d0309b5b12f6151a991d547b9
BLAKE2b-256 4725961df5428b7f1197aec384bd0d09c6eb62e4cc4057351627a04e3129b119

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-pp310-pypy310_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.5.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 efd849aaae04c5e8728d601f78f244faec5cb2c6f1a862ab2d8f634e1c4a9ac8
MD5 824337105c727e08b10037a63ec1b538
BLAKE2b-256 a559cda73a1ec210017b9dd1981197e3a4a8c1ae1b748565d5ffa2e73f6b9bca

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-pp39-pypy39_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.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba53f35839242cd4b53a28abd5f850c187cd40d687df2e50f5bc7b78e0abd64d
MD5 bf69a598542916d1916873bd1b3c4c9e
BLAKE2b-256 fbb0582069af758fd05f1b49609cf04d7a96ce9c1fe744fa8793fd199b713b27

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_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.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d764de8621de840ba5bbeceb4fcd6f7645f1e44df9cc039b723b39a121505c22
MD5 d731c8d2891a948a11a3cac3eb0b47be
BLAKE2b-256 0619eaaeeac949c0ce588ad6d184e23060a7348c1c1c311e47a0ca182fa9a6b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_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.5.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5b2cbcc1f984d16f45b8dd34ad26bd1d61d6ebefa7d24d0fb52d5a250b38b22
MD5 7aae57d33ebcdaff74c4bc0013117c37
BLAKE2b-256 e768e9208838677b46ef049e86bc6af11880a829d6bffb2bda8704c0c23f7059

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-pp39-pypy39_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.5.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d80bbb8d2711812a5432a640ad400d235be399250ab0be002370dde3aea51fac
MD5 b19cc6c04173fe23eab68696367b1bf7
BLAKE2b-256 10d0c74cd702279de82df5b579ce8b26d711994d340e7bd2c41dfd654eb2e6ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-pp39-pypy39_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.5.1-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 167cee1b63b5bc4371b7cc1cf67c496778a23a9fd3ea30fcf9adf7276b60ddc5
MD5 5e57b9e390ac742ed1f04c83cdb43e80
BLAKE2b-256 651e721354b55dd21929462588f578c81792e819aa7cc476113b4386d92a62a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp313-cp313t-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.5.1-cp313-cp313t-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 4d75fda4b180d594a986758302235015f0705363f143bc50a428bea5f4746e00
MD5 488b832470e9b368553478dc05feade2
BLAKE2b-256 4bb66ab5a902978ca2b75160e08c75380303589d11364695ace0be4f86932951

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp313-cp313t-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.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40d11217233bd4fa7e3550fc253308dbc33949afb62afcc4cd1b124090827ada
MD5 a6f782c725b494f580ac8f915e742e0d
BLAKE2b-256 b7f54eabbad2e78642a0822fc28c9e5ffbb89cf9649ed85b29c0bd24e7d1f628

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp313-cp313t-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.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9bf4cfa14cfb5a363baa71a6b5d95c39013ab4f4b6574af09c4598ed672e09c
MD5 8ceae31ee7a171fb0008a6503ee7c56f
BLAKE2b-256 0f8943c2fadd825914555f5d1fea628c2473503722b5e2140caddccdaa83c5d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp313-cp313t-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.5.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c386580ea34c030c000d10041f3afd16d34d4d23248f71bd3996c642db72ad7f
MD5 f15a8acf04db51e32ee2ad8260dae725
BLAKE2b-256 fc55398771f1dfe8e5171027161d76c4e419dd82b6b59b1b26760080e9041d24

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_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.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 790042f1ead52add980634e7b7ff02bd7592e943470d3d1ad86c80eacc4fc66e
MD5 e9f114b2e4493554259da924f2c6c632
BLAKE2b-256 bf09d9ab55e7116b01315ee49cd7e83bfd24d95e7ccba537eb34938cf8d74001

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_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.5.1-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89d79c0d9da8255175e4ea84525d683807e1ce2a1b9e9bff35df35194d134aa6
MD5 04d4f316a0e3846abfb38f61549c8e14
BLAKE2b-256 74fa7867d1f2a9d52a79075860a8a04a1cd614850b42e5168a84f69f0b26ab1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp313-cp313t-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.5.1-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d5ba44a5d27e21ee4aa179ce92392ab3bff321be2a344c60b89b61f3b96ec038
MD5 6b45e93f16a5bd30ac8bf99931218002
BLAKE2b-256 5f256baa53004d6d000bed56920abe859f154b16b019e6488b3ab6ad6dd536ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp313-cp313t-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.5.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 873fdc14cb157aac08620cdc715e5dd27e20f0d8271c2817e31ffe1c2b15d3f7
MD5 ce5fe08a897dfa4bf9ee7f759eecdabf
BLAKE2b-256 af1aaa1ca5c4f7e8f8b4dbf8dd235b2289b6086497537620862af48ad930f2c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 16f59fca09b2758ff4a570bd5497ba1f6c12a2ed39b65a8e6bfa6badd929e682
MD5 64799a60bf12e4a9d8aa23d3936d8613
BLAKE2b-256 435da10fe5ca1b266d3a1ca8915c3b35e441515b22cbbad7599ce2cea076a662

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ae6eb2272a92f7cacba8c6640cb463518de2ff2f021691a23aa4d1c2e738c17
MD5 afe2676def76ead6fb431b54198cbe99
BLAKE2b-256 3ea794026180bad59c055e0f0eaa1bc622b8f791663fb9f896f960498d051aa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b87cfb190f4faa6d7060af2be58111f3c5bdf7fe4ba4721afbae7a268a223ec
MD5 6790b23181e7608f6734b288c550ee7b
BLAKE2b-256 42b1012b88d35edde31297cb52d9819b0cb4b919681a86a35bac7ab1acae8cd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d47143fcb6eac6279b339827bd28b8033d8faa39f60716afe7681a4d05e601a
MD5 aafba9a2368bb520cd93f231ca974b40
BLAKE2b-256 4e8a4e75aec1276debb931df7c68038826c409055bf6863518d071bfe70ace45

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_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.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f12cee79c28e233b10dbd028f096378f9e7896f517f15b70186d982921ea126c
MD5 b88685e215bd86feb4c67928fd4e2a46
BLAKE2b-256 d162efb9e6bc91eca4f6e75cc7ed6718ecbdddeefb5460df2ce30bf3e5a12e03

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_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.5.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16b418b73689df07ab270f14c5eb1f828bdcd367ac5ad6d67b666f6f47bd9719
MD5 16810e50f4bc03d5d0a9d2b69e44dabb
BLAKE2b-256 fb88002a6f016b770a1268d045eefeaa97d1753f3612491f539936d990d2c906

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0048fe50e0545d33c72ad267be015d6c1fc07d47e5190df4037407851fbfa792
MD5 fa09a6e6ec9590e0fdcf49f47b455403
BLAKE2b-256 6b29c278bee2cd48374e83515a2f576e25e8a27d4f3daa6f48c2da9e2d600692

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 46f2aebc5cd72b1032705d1b76f52bf0882aea226d8393dfb4e469fd271e342b
MD5 9e5173e3daa8dd8cd36fdb74c5158276
BLAKE2b-256 26546d1320c9bb703596dd7d20d2a80d4622e3b02329276b1941fcc7d3fa10aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1e4319c929efcd2791d195675bba7a3ed14cb6802b30ce9bb9d043459cb12c11
MD5 ebdbf901762cdf65aefab81e42def19c
BLAKE2b-256 6af54145629c321fa158f720b301e4a5a070140ac71d0993e99e4b259416821a

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffe35b80acb66e6a2885b4fa12b55f3ccad798e7120d0513fc4fe5dae011a1ab
MD5 f91c518c069a333005b4a29188c6afcd
BLAKE2b-256 29ce3978ba7c2ae76bddbf474ecbbda39afdb2918d289d87f8ad32a75e0b3276

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b129fd6cf19aba3c5724886bc8c781eb41bd53e1deb81cf69ec7315c2edf2117
MD5 91c118200c0791aa8409fe6c9f603d50
BLAKE2b-256 2b6deaab454ef435fd6daddebd1efc56c76732019d01fa80dac5af78944da568

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ea404fed107ed98f385f30fe0bfeb82ef64f64a914c85149569ca0ab69f2c42
MD5 72aa7df9b877e102526e522840f16a23
BLAKE2b-256 ddf18af03ae892b52a00d7b672c6474fdb55808d3dc0f548c481ab2674b27884

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20f69240b1f2e9c8b7b2c0361bb7dbf4baaa0de09793dc4843ee2936ee3a2cc9
MD5 a6cba4c6b3220586e86aef65d2c2fd8f
BLAKE2b-256 cd077b1b66586f707e7b74b65a6c8999d6026f1ce55a264b14e97422ea89231b

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2d06f6e097a382ffefec1a65df3fb6689128cbaa1833434b0edd4dd05aa2a87
MD5 8199ab29d834c016776f7b15b756f571
BLAKE2b-256 7e55bb4f1b06b19afc64dd9fb20c6338c5f7004963d8be81c7018c3302ac6a2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c22e870ae59eb361cee2192fc430767c4b25d5094d91d68b7743980e87ec9e3c
MD5 721271a297586f01fb7cafe939e5fd7a
BLAKE2b-256 4c5a91262894434f6bece09c09f91943a60d12319155d7d6818271f37d189bc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eb9546c182719cb69a44af8b0351fbfeb68248ea467a09536cb4c57e66db5884
MD5 ab2680972f128ff108979afd632de41c
BLAKE2b-256 e45e518d8e120be719b28506ba74f154001bb762f859f07a23482795a738450a

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 110151ac3bc490e8caf7d284febf661a4784d94329ed14e924bcdc5548eebe7d
MD5 6360191a42aef60736d7d55402381c0f
BLAKE2b-256 a86d8e65b631d0ae9e5dd9c8ab4aae3f2c6cafad28096d488cc0a1915bb99dd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b9ba9c914be4eb64e6c541dc3035b999a52c08ff2d84f262a986844e7741d10
MD5 88783eb9539cc7360e375fc86955aa00
BLAKE2b-256 799f5e20051015f6beb86be3becbc3dfb4aeb6175c5ee5f77966455cafa4e880

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49e1c747c4c21cad173d3b45a09838d9b28d1f9b6560c082864f4c500359f4f3
MD5 35ac5eedd6cdab543aae9cd6e62b7d48
BLAKE2b-256 783f21f3fd05c050a23c7fbd46080adf45a81e8b8abee399463a82a4723dbb83

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0faa38981f48a2595261c67a3b1e28013e67ebcfbb9f2ad809f7b2dde0a85db
MD5 689133036abb4db6d126dec17ed56937
BLAKE2b-256 b304c0d157fd34b2b8c16da914acb7c7598622252e83e5437d023e15b85c432b

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2733ade1a391a2a7f2b8fadcab69fd1850e2f2897e76dbd3071b3b9d9dbbf96
MD5 f55e074b131a0ce5c9dc5aa45d21e370
BLAKE2b-256 126215afd8c245c508917d36965069207fa860df3ca6a8a3a8dbf0e9b4a2d189

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bb76960902f997f07e52b191357b80cb4a55e132f8e59061798ad5502cce3e7
MD5 eb282cacf7abc03aedfd99f8aa42c799
BLAKE2b-256 c78a2a6ffca12c5254911d674ede1a3dcab1cf71c0db2ff0b351d5da87ff9635

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5b694e8b833d245d0582ae64b1f6d258fab41f7b5857024476df1dbb0dbc7d0a
MD5 d3220cb047abf0c717fbd79abb5ff3a2
BLAKE2b-256 910706c35f588e0baefad5bf2e33d31c9eede0b776ea92abcd2f24de6ccc144a

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3a28ef5edd2204476e220676e643876ab61df85644e33541c6d1557cafb6527d
MD5 77c0aca282924592ed09aeabff29cd6b
BLAKE2b-256 497c3375af8c152db4e69495a842b0a19c3fca75d4381342f69ba5b7a68d5d24

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 80c0189691e948d989b2c64e2fc4fc375dfdcb7d39197597d7440b1f522b6eaf
MD5 c2f57fd8b974e18aa3d5bf22b6a55b14
BLAKE2b-256 83cf42a7d5ba97b12cf61f1ff13c2ece4a8ffdd3369f1badffa0bcca43332a17

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0886521c903b499f32f12ba14e4e27f04e17e6b3a06a83c975dd039dfcfbce7
MD5 a25c2623624321a88a87867a6157ce66
BLAKE2b-256 205da6d06099623b8369fbf481b3c4f6317f4e701f3c1e14b6db5d7956609c00

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2df8b4e664b48281fc64d16ed4104551c5b5bcee2607fd562987739c67d47d61
MD5 be365cbbb03d5174da1d8464924a40e3
BLAKE2b-256 b001776e6c858523507821bebb7f89ffaa6f8879653c2f4c7d31e9e70f70e539

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bda779df3575ceb672390a122e8f81fc1cdd165372b502443afcfe7ed3cc9110
MD5 eb697d3b86cb7f69926b5b9117e64831
BLAKE2b-256 a4a8d47cc45370fdb50c261fe2e2baf9fa0495bf1d9f4d96bc918bfd2113694c

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc5f073c0ddff97a284c82a3dbe4dcd0c2e15992a184a68a51b89112faf4504f
MD5 4b816b35123f7018f404072339e7172f
BLAKE2b-256 e138c885a162270a15d324c96da1b7ceaf3aa162a53be8cb5919060f6d3ef4ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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.5.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a2a4ef614246c9d76da3cdb891a5ed6a3771db87d002ed6a2e5f293b30c3aff
MD5 00e93a4330136ffb84f6e469c905792b
BLAKE2b-256 a90ed5ee7ef157b839bcdf03747f965cbaa53f38cd0e996457e28c9cbbcda5a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.5.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dd854cbc47196039458cb1ea2267a01870c4619f659b086e955af9250ea6a941
MD5 4562e7b8f29b4c41399adf51708cdfcb
BLAKE2b-256 c1b7770116d09fafd81f9cf8d9ebfcf564739f98ae34448c84eaeeec508764b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-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.

File details

Details for the file boost_histogram-1.5.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8f8eb0a786ade5412398f134f0ee83493344b950d3045351d5726f7229a690f1
MD5 5b527972087f8de0c095e95087a86c6a
BLAKE2b-256 c2d98bbee8fb086cf4a98aa108fdb840a29c9fc74a32774170eead5ba1705668

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp39-cp39-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.5.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: boost_histogram-1.5.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 539.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for boost_histogram-1.5.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ab781b68190c046c6914c8f5a7b38321c2ea940941ef594d39106a6e73006614
MD5 5fce3307905258c294f5a13d19c69610
BLAKE2b-256 c428d5f90dc44fba9bc14dad7d3037a61df5c479b78c0806c1ddb57d0689fd21

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp39-cp39-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.5.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f87cbc5bb13ce8cbdfc3b7c9f7150077cbd30cd861b3ee5e46701a99af3240d5
MD5 d632a55bdf06ccf0456034b5531ffe10
BLAKE2b-256 eaec2226db72c70cafca226de6fd658d6e36be4d123062e01e10cb63c3db6dbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp39-cp39-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.5.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f15e36b3b5f65a86fc0b0e3b2be9bcd9a0c8e03ee3bf0f207d122a54d6f47254
MD5 2cb638d0650a64a9cd9a1d2b74b6b515
BLAKE2b-256 0b45f030dc5498bd5584433ef36a7ddbc8684202504349938d717df60df48be9

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp39-cp39-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.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13bc3f88910df0037c3cfafe27b6c5e5ba50e401a90b06096f641c7763fee034
MD5 fb470ae421b81b420cfd182a96352512
BLAKE2b-256 8769d2b2942557e53692676ab7fc047443a431e0e6fc88afc97e142cf64f59e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac175e5da480b4a8dbb8c20725d23f2577d5c2401d1e0e97f5286a5dd89a33d6
MD5 002d3fdbb0bdd875aef0522348cb28ee
BLAKE2b-256 70c81b20efc35ab60b9102ae11ab0dbb3572da35d8c5c92bfe81bfba2217ea1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_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.5.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9be28393e47755c8618c25de6c42880ec2bafd9cbd168616eddaa250dca3dd7
MD5 c6bfcb0ef69c91a12a4df62e155720d0
BLAKE2b-256 20d1d66e58a0b94e6b5676f1a8723a9cd98c955af43a22d9cac74f146939a478

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp39-cp39-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.5.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3dcc8db54d16ea4e2069fe8b4708a946a7663904c03a3418d0b51b0dd4145ddb
MD5 54bc5ded68d35136390a62be83c18ed2
BLAKE2b-256 ca9910027d9011da63cca5ebd30fc26743aa3ec1ee7ddd81684ed7b5d63c4157

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp39-cp39-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.5.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e7194c8162244bad852ff768c5e20fb697bd1d9022ad74e4be3ac7cd66f4cae7
MD5 39feb96626ca12494f804b6b4c584aa4
BLAKE2b-256 d0ea23020521ac02223ca0d921f60dc0098207c4cf874849bd08bf2f9b01fe81

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp38-cp38-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.5.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: boost_histogram-1.5.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 540.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for boost_histogram-1.5.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 58f69cd6c04225f928ab822c7d1bd42eb18dd5276866e301d0a8dcce51e4b7e3
MD5 9e6db5b941bdeb61cc0674a829321c27
BLAKE2b-256 da7cc8697af1b1e16e0e3c5e1a1916bad7263061d613df31b061823dfcbee5b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp38-cp38-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.5.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f428b63570a2b2bc2fc8559fa137f066e9354c4e6557746399fda53ab0e56b9
MD5 84e3c65c74b4b6c04b844c5ce6a181dd
BLAKE2b-256 c92b2104eb77295ea145c37bcd09bf55b5acd32c66161eaa073668bc394d642f

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp38-cp38-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.5.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08566b4780bd7af9d8a420347cd308fa23bdf29633124fa3a570e03efdb6617f
MD5 e16ed69421400af018cc7b8f0c63b422
BLAKE2b-256 644b81f710cef9820270fa5a960433e8659af7b6764915f4d07dc7651c1f3227

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp38-cp38-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.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f539c91bb1d98880bd052f7b587ddbbbe2f1a7e3c2ff41dbbbd78f7cbd5e429
MD5 3267f55bf909c208a1281a0945c07567
BLAKE2b-256 cd4a2be1acd300978ffd0a0a204e8b67978bfa50bffd43bb0e8fb537556213c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_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.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82cb91776c485a9a29dee9dfa93b75d2b1f860f1f340fbde940a9c10f477e9a1
MD5 55a47bf947ff74100f89f025a64004bf
BLAKE2b-256 492183a1dae6f0deeb26418390ad4dc28963154c04a8ffe0c4f54317a7ee46d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_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.5.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03341699e47a0a890c5c27e9fd28eae6b63a0f67b0b5fcf9fe32824cb893cb96
MD5 48a668cbdc5ec67171de26d7837ff54b
BLAKE2b-256 b1480cdfa5c0cfc4df7b481dd26eb694895237dacf44996ca6d1f672ec4bf492

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp38-cp38-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.5.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b93e8221645273dcd697d971f0561598eb605599a4872ae414e0a7cb331d7916
MD5 affa07608eba882b30f0e30b0efe8e3a
BLAKE2b-256 4a0bbd1bac4852ab29407640fba34bc6dd6bb5330a574ff82851466ad4a37dae

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.5.1-cp38-cp38-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