Skip to main content
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.14, 3.14t, 3.15, 3.15t 3.11 25.0
manylinux ARM64 3.10, 3.11, 3.12, 3.13, 3.14, 3.14t, 3.15, 3.15t 3.11 25.0
musllinux 64-bit 3.10, 3.11, 3.12, 3.13, 3.14, 3.14t, 3.15, 3.15t
macOS 64-bit 3.10, 3.11, 3.12, 3.13, 3.14, 3.14t, 3.15, 3.15t 3.11 25.0
macOS Arm64 3.10, 3.11, 3.12, 3.13, 3.14, 3.14t, 3.15, 3.15t 3.11 25.0
Windows 32-bit 3.10, 3.11, 3.12, 3.13, 3.14, 3.14t, 3.15, 3.15t
Windows 64-bit 3.10, 3.11, 3.12, 3.13, 3.14, 3.14t, 3.15, 3.15t 3.11 25.0
Windows ARM64 3.10, 3.11, 3.12, 3.13, 3.14, 3.14t, 3.15, 3.15t
iOS Device 3.13, 3.14, 3.15
iOS AS Sim 3.13, 3.14, 3.15
iOS Intel 3.13, 3.14, 3.15
Pyodide wasm32 3.13, 3.14, 3.15

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.8.0.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.8.0-pp311-pypy311_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

boost_histogram-1.8.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

boost_histogram-1.8.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

boost_histogram-1.8.0-graalpy312-graalpy250_312_native-win_amd64.whl (1.2 MB view details)

Uploaded Windows x86-64graalpy312

boost_histogram-1.8.0-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.4 MB view details)

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

boost_histogram-1.8.0-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

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

Uploaded graalpy312macOS 11.0+ ARM64

boost_histogram-1.8.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl (1.3 MB view details)

Uploaded graalpy312macOS 10.13+ x86-64

boost_histogram-1.8.0-cp315-cp315t-win_arm64.whl (1.3 MB view details)

Uploaded CPython 3.15tWindows ARM64

boost_histogram-1.8.0-cp315-cp315t-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.15tWindows x86-64

boost_histogram-1.8.0-cp315-cp315t-win32.whl (924.0 kB view details)

Uploaded CPython 3.15tWindows x86

boost_histogram-1.8.0-cp315-cp315t-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

boost_histogram-1.8.0-cp315-cp315t-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

boost_histogram-1.8.0-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

boost_histogram-1.8.0-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

boost_histogram-1.8.0-cp315-cp315t-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

boost_histogram-1.8.0-cp315-cp315t-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

boost_histogram-1.8.0-cp315-cp315-win_arm64.whl (1.3 MB view details)

Uploaded CPython 3.15Windows ARM64

boost_histogram-1.8.0-cp315-cp315-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.15Windows x86-64

boost_histogram-1.8.0-cp315-cp315-win32.whl (902.9 kB view details)

Uploaded CPython 3.15Windows x86

boost_histogram-1.8.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl (354.7 kB view details)

Uploaded CPython 3.15PyEmscripten 2026.5 wasm32

boost_histogram-1.8.0-cp315-cp315-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

boost_histogram-1.8.0-cp315-cp315-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

boost_histogram-1.8.0-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

boost_histogram-1.8.0-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

boost_histogram-1.8.0-cp315-cp315-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

boost_histogram-1.8.0-cp315-cp315-macosx_10_15_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

boost_histogram-1.8.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl (1.2 MB view details)

Uploaded CPython 3.15iOS 13.0+ x86-64 Simulator

boost_histogram-1.8.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl (1.0 MB view details)

Uploaded CPython 3.15iOS 13.0+ ARM64 Simulator

boost_histogram-1.8.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl (1.0 MB view details)

Uploaded CPython 3.15iOS 13.0+ ARM64 Device

boost_histogram-1.8.0-cp314-cp314t-win_arm64.whl (1.3 MB view details)

Uploaded CPython 3.14tWindows ARM64

boost_histogram-1.8.0-cp314-cp314t-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

boost_histogram-1.8.0-cp314-cp314t-win32.whl (923.1 kB view details)

Uploaded CPython 3.14tWindows x86

boost_histogram-1.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

boost_histogram-1.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

boost_histogram-1.8.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

boost_histogram-1.8.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

boost_histogram-1.8.0-cp314-cp314t-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

boost_histogram-1.8.0-cp314-cp314-win_arm64.whl (1.3 MB view details)

Uploaded CPython 3.14Windows ARM64

boost_histogram-1.8.0-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

boost_histogram-1.8.0-cp314-cp314-win32.whl (902.5 kB view details)

Uploaded CPython 3.14Windows x86

boost_histogram-1.8.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (354.9 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

boost_histogram-1.8.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

boost_histogram-1.8.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

boost_histogram-1.8.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

boost_histogram-1.8.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

boost_histogram-1.8.0-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.8.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (1.0 MB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

boost_histogram-1.8.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl (1.0 MB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

boost_histogram-1.8.0-cp313-cp313-win_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows ARM64

boost_histogram-1.8.0-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

boost_histogram-1.8.0-cp313-cp313-win32.whl (887.3 kB view details)

Uploaded CPython 3.13Windows x86

boost_histogram-1.8.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (356.0 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

boost_histogram-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

boost_histogram-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

boost_histogram-1.8.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

boost_histogram-1.8.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

boost_histogram-1.8.0-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.8.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (1.0 MB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

boost_histogram-1.8.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (1.0 MB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

boost_histogram-1.8.0-cp312-cp312-win_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows ARM64

boost_histogram-1.8.0-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

boost_histogram-1.8.0-cp312-cp312-win32.whl (887.3 kB view details)

Uploaded CPython 3.12Windows x86

boost_histogram-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

boost_histogram-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

boost_histogram-1.8.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

boost_histogram-1.8.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

boost_histogram-1.8.0-cp311-cp311-win_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows ARM64

boost_histogram-1.8.0-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

boost_histogram-1.8.0-cp311-cp311-win32.whl (883.7 kB view details)

Uploaded CPython 3.11Windows x86

boost_histogram-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

boost_histogram-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

boost_histogram-1.8.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

boost_histogram-1.8.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

boost_histogram-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

boost_histogram-1.8.0-cp310-cp310-win_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows ARM64

boost_histogram-1.8.0-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

boost_histogram-1.8.0-cp310-cp310-win32.whl (882.4 kB view details)

Uploaded CPython 3.10Windows x86

boost_histogram-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

boost_histogram-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

boost_histogram-1.8.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

boost_histogram-1.8.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

boost_histogram-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for boost_histogram-1.8.0.tar.gz
Algorithm Hash digest
SHA256 43d5c4c07315390b4a751165fa1fb00faafcc06c9da5442115063fba0e6130b1
MD5 55e684f5bc7e6889a80c286b4984746b
BLAKE2b-256 0a915b96de7feffff6dd7a9c0834b97c1bc2b648f87dd76077d1d5a37cb8e0ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0.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.8.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 41f2c7403e42fd1605dae48e05d6cd247f05a372310124eca21b752d21ae211c
MD5 19f5ab2bac031c74f451b2a63fe294b0
BLAKE2b-256 c9d3ea9ba6759ac3b0effdec32fc1bba6dd368cc787e0560c4a1495832721cdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95f498544a28781a3daf8230ff020a73a1e757c62ab188af2cc41f6dc00109b6
MD5 5c832c2506e89073b2c37917e09ba4fe
BLAKE2b-256 6ed6788c4668809b02032ac473ba1c3a9693310144051fff350a5154433d3c58

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eb53a0c11871f542e0cc1d46479226a369635ff0729c29276cd848d1bbd7e2a1
MD5 7fc73c4539b2b3ea1443c49ef4c314d0
BLAKE2b-256 861cf3ea8c4cf3863d7390e836022196bf9c1689092c87f0babf2f2c18005eb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7271aba51740797771f96bf81071bec655b2049d4b8c61d2a0dee3c279cbe4b3
MD5 7ac2d074db1f4f28fece54067bf35e09
BLAKE2b-256 6ebb9906a6347d79e5b3c451ebce5c96b6d4622f7d75aac80742f67b08b2d4d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 82138eab311ef4afbb779dbfb6bd89869a467e6575a54b3e6296f1c07947b16a
MD5 6723e290f09ae2ee2cd7fa59ef9125dd
BLAKE2b-256 c6c75f5bbdf4ab5366b4902db401f32134ea714f33de84b7f2a2f0e802b9848e

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-graalpy312-graalpy250_312_native-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-graalpy312-graalpy250_312_native-win_amd64.whl
Algorithm Hash digest
SHA256 8817a4ed2c9730564e76c94b115285f13ec1fafa2f9567384329f50c11263ff8
MD5 7156ec3a125bb606035a379a37537bf2
BLAKE2b-256 f7f697a91f8dd8b8d5f823c5e0a77433cc7d89df56848b860e0097874e4f4ee0

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5bdd264baa6bebc46150e1a782b614c3084a1bd2f6d77797a9977af518fbf539
MD5 908de2a22b91b0e81d9ccb28904ee25d
BLAKE2b-256 3f788f41c82a14ca34f3edfb2b4fba84e392c9bb499502a3228104d02e57e944

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-graalpy312-graalpy250_312_native-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 673822070ac659ca0355f20292c4312b28ece16801b98e6021505ee05a012fd9
MD5 875c4225113461f195baa43207a985c0
BLAKE2b-256 2e6e82161e18a052c53752da1c97a237c60f663c474e814276cd4599781e61d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e57a114c8bb4a591521bbbc7b87122ef9f2a0816bbbbd5e7aa3286786bd85f72
MD5 4975a6f833c91c642d1500df13dd16ce
BLAKE2b-256 09d1973a9748eae06591889ef85c7b2e1462d312fc17430944dcaafe1d6ea32e

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9c12ad222d338d245a968886eaaeb96566d0b6384d0f36589bf19cc4175d558e
MD5 c6134399fd047173ad999ec061769ce4
BLAKE2b-256 3e5ee30be425d44f346508a664733ae4a7ae937a70c090701ecdd33bfa5bc294

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp315-cp315t-win_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 3cfd449dba3fee484463fd934f50a2fd253db1f30d29274d1daaf2ceaf55f870
MD5 2cee123c2f93136eadf11e753204acd2
BLAKE2b-256 17c94346fbefef9fccce918356dcc874f7da7e42332817bb0e3441249da2b1d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315t-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.8.0-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 c4a0cb5c4fd24e5870fc2500f71bd3faeea024b5a41c625759976d7fb71e51d4
MD5 a056817026be04f5f15e80d06456e2ca
BLAKE2b-256 1d70c989e4c46e1f3c360ef4b35c46cff8d63d6360f6995d3d5d4c80b2876de9

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315t-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.8.0-cp315-cp315t-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 f251e0ff688b1d6af65c70af98ecb43ad4675818fd63106762abf9441d0ceb68
MD5 ba4d140018256b8a32944f15f8a7f29f
BLAKE2b-256 979a610ff6f26356fe9b0b1256a665bfb0ad119f4fe4373fe85e35d02843bde7

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315t-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.8.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16a2f491c414a7b433c478a8f96ab011a8a5e539161a1ab3dfd9c34631bd7f01
MD5 70ac21d8d873872bbf6e4ab4b1e65a2a
BLAKE2b-256 f940cbd11c3e28f2f20bf5f69754dc2927a6c0a41c873421358a68a7da7cc8cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315t-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.8.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 676c5d181ebc7c9f7ddb9f730a921d6527bb5e7f86735bd4337cd9f711ee2d5d
MD5 d87dbe2f223ce67a0552c25747ce774c
BLAKE2b-256 2c9d80c8c927b4bcf63d286e79b8256de9572655f5b004c2d696e273813547fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315t-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.8.0-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 87dc6266ba00455e0dc7357eb019cd69c282f0dcafbb3d08ec4d821a53b29c6a
MD5 c5ac1691e6cd10599d626b1a9f9a9a63
BLAKE2b-256 f7e9737d1cc25b2ade5e9c9096196b4bdf304546a925d3c5d68501bc6eb110c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315t-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.8.0-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f9403776e2fc492507e737f82342274ccedef789b48bd2a4e53ac0216290e7de
MD5 be1d439167bdc34004f9fdbecaef155a
BLAKE2b-256 a506e2c48c200111cb9ae93bf00df4bc12879544527a065b905892298a53cfb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315t-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.8.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9a82562b0b77e652c3978889eaefb73c196d4d421fbf14d61a25944c4b98134
MD5 2ac9d3e476bbf9bf77896fad5fa4b041
BLAKE2b-256 2d752ed22bd41f02f67201c3a720d57858e8d5f96f1c9a243100bfe0c62383b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315t-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.8.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4c4df735e10cabc643230f9d02dace39a467018d3797d6cdb1ccb988fe055aa4
MD5 be78f6af97475629bd656ebc09f63319
BLAKE2b-256 ab25cae0f691f05c7db88d307bcba5161b02612ba44e405577ea3bbfbe3d9fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315t-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.8.0-cp315-cp315-win_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 f0cd5191064c3cdb3ddc092d54b85c3815f5c0609626f8018b5f3026ba873c16
MD5 e720ef4b13a53e77cea4e26f3692d01c
BLAKE2b-256 fc5e4d157421a4f518a6718d7b6c67d382809fe03baccc18da23ad6e17278d61

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315-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.8.0-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 8e6268e866ec8e48974e80cd62447e46b00e5e3fb80a229cfc6f0e46577ca16a
MD5 75d811127a51ae82e015671c97cc0840
BLAKE2b-256 7699d05893af28c8d508bd0108a5f20726c2d3c658665538517f7912fd94a767

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315-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.8.0-cp315-cp315-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 1f2fee4ebee6ec692a189d9fc36dd80e39725239cfa7e2c2a9bb81638700011e
MD5 5b7b008790a86d72ea44beb0954381dc
BLAKE2b-256 a4c5aa8cb2906daad02aab46e72286e631234d2effc662598480c2f2f515b70f

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315-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.8.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl
Algorithm Hash digest
SHA256 bbd74682f6caa62f144762a59b14da562a4d1f9509e17ca170a83c65b3a486a4
MD5 97a51ffb2b604401f2ec92626cd749cc
BLAKE2b-256 43d35ceb7d5f09ab5a955900189bda6e4f62981aaec17c46ac2318ed43d786d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315-pyemscripten_2026_5_wasm32.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.8.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04d1be79c064716f11b7121abde97d2a282d96a15b72bf451cc533a0283cf76b
MD5 bcd11fd4c9df4abc8cd67080050cd471
BLAKE2b-256 9fdf3262e16898b0b065e50fee278f210fa989aafa47ca503e1d5b615d52c1d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315-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.8.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10c0aa75318f21a0cb65f5878b47c6aa6c14c30ae949d9ac23fe71f0f279443d
MD5 4c5f58ccc2174336a165f1c6e1c15de4
BLAKE2b-256 753bf195a8b8ab465a7748e8b8f83de44fe9c53028f8aaad8e0dbea8c6cc7f8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315-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.8.0-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db75ff33fb02c9aa6584532d1a3dfb900de3e483692a704f71553c2731712df3
MD5 325b58cf6e0bb3e5a03dc78b67f57c70
BLAKE2b-256 3f370c751995cf83adaa99a2211ce3153244fe60a1df758a324ca194f9d9561b

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315-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.8.0-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 811b0d54d0e2e6cf0f103a08f84fc0b0908bbeca81be38fe5a5d1b4e24c088cd
MD5 f13f0d0af19ba3a2d1d450c935f6c9f1
BLAKE2b-256 fd21e4a0be03f62e6f734f3ecf23fdc9744f0e78a4bd5e82eceecc3c6145cc29

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315-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.8.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e02cbad7e1a7b9bfb9379cc1de778ea525f2c3b049cb48757423b655002096e
MD5 c4b22599abf261fa613c06fd4b6acf8b
BLAKE2b-256 3324930f7d13778d3b6d28143e6943d088b37538b1dff811ba8d69099e79d855

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315-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.8.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 04b229ad120c6efc84e03443f5e15eec04143345a6e66a3f131a00643bf97eca
MD5 dd54bee3324fa8bffd9d0a32bc6ec900
BLAKE2b-256 4be7397294eaae2e4ecc55b5ef432bf014750e8ec02788cc730515f416c0ad56

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315-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.8.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 3d962049a41f16b683ac3c056f3a5f1a4d7d3fdc6cbf63e4458d413af3928c76
MD5 08e287555bbcc32a506bf9e7a6eef10e
BLAKE2b-256 59b20d85be002a2a7e0168ee5dcdd7a3f39d9f4d949cae9cb7ef3f566214fa7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315-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.8.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 712cd14a958c94b18a995484d336c4e5a6f401ed13c07ab3792ce931a04ed5fd
MD5 e25352e9c70de16762765ea765efe4fb
BLAKE2b-256 e001f6bb6e0f9ce9d6d9b25634a13c9ba3ed7a4d08345d9a16b9d8757acdbe8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315-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.8.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 f9acb5508d7639f1d16a771aa90272872735e13795f81e3f80a493451c7a0b9e
MD5 e370eb62ddcace28ed0a7caaa6cae737
BLAKE2b-256 13c3f745049924320f597f5d88e2e7f5cb967f548f4882a52b9c8985a5a4536a

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp315-cp315-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.8.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c31a6d33809992ec7adfb99aff824f2cad185c06352961c44c09f6f17319903d
MD5 932874042a65cc18a12f52ad4d953be9
BLAKE2b-256 30339238c9177cfe4a00c9700d0b2668925451f94f85734a32ca62ff451831eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 12f3f6f489e79999e2016363ba2a516be713a22e1946a740aec425ddb06378f0
MD5 f94f4398f2fc2201e5e7c4d4f311ce2a
BLAKE2b-256 cb7d282ee26f241e1f64685156e8d7991c5d7407e64e60983292a59ca2bb6d44

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 754c47947bacd7ffe4e816550c3e44d0f0d06fc69b32041ddc741444a1e80e58
MD5 533871f86cc93578410a136c4646ddc5
BLAKE2b-256 f501cb94e9968287877039b840190aff82c3c787624f1211e4df76a2423ed665

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 866539ccd3475cdf4c2ece4ad1d2a0a90d44660c97f8636cfb1c0228f48c630b
MD5 cf161370d15353a8218f0885ba4bb09b
BLAKE2b-256 0bdde6be531542b7d63b4b60d65c7a984720bc768a84234f66ae64880b64b2cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6197cc06f094e410d46e23db082ea9c614a7f4aa780edb2f92d3f10e38f80c1d
MD5 c9a7b226d987f58980d5484d36ceea52
BLAKE2b-256 bedac4ecb6f85b4af6d10f206770fa91e703c185269da75f962b5f62092ca7d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d24f888d14c8a5d193508262627613d36d05b9b1092390a94e563ba559174bd5
MD5 0686344cf770b607364b1b37dc75a63a
BLAKE2b-256 6c39c7a27235cfc654812d746c1656ed1defebce3b9454f1fcc9019cbad61727

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5231e6c13942f06453c559be93513c0db97fb5a9f01c534a78a71bd5dcd04956
MD5 ebed2cb88773ee295eecada226de0b16
BLAKE2b-256 778ea077d29ac051ea3b44c3a0cd42f0cf0ca6e7a7b474587e9e5e2bf85bb58f

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e394dfab7e71300c666d5589c60adf2fe73156f264afd9e02e864fa62b0fe54b
MD5 a23f586609f53bbd2292cec10d724520
BLAKE2b-256 559a62090a92bd2941c581188de29dc7e906856a411d51f8824f358cb500b7dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fc8c053a2174bbe98bd5e06d9825501a4146ff0d415f461416542d336a996741
MD5 b3bf545f461b8e39cb60af5424c2ca73
BLAKE2b-256 f18c67607f2554925530b27b787c8d6ca56d5813e53dcb53fde4e0746c60618f

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2aca3b03edca01be7769d72471e50ec3730672940ab58fd210deaffa0a52bc84
MD5 9a14ecde03813657cd8bf7336fecbabb
BLAKE2b-256 c44c551e11b95316e6a9c0c3fe4345b1af3925c4ac56b6e94ad2ce2fbce66e40

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 68df7d3ba404951150dc0c1acc1e860d398639575ed90bf266310b26fed928d9
MD5 ecaf50695299bcaccbe981cd041c2bb5
BLAKE2b-256 f99cfaf1ad8ac7874fb0efd978aba253671b4d52c984be638b7b7478d59729f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 97b76f09385fb5c7cb814b603f94e2a93ccc5e096b3746eb4e51434ada1d8792
MD5 37b1ab496054528ee596fd63d429125d
BLAKE2b-256 153c3124ee737dc5a2abb7a3603bb21511ad5cfd963fe709790c03545cbef052

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 ae74f1e6866f46ec5c18aed6627784b76b09b06bd124de5f062f367504808cb3
MD5 5965008e22a0008b8946c053efab0702
BLAKE2b-256 b00fb2bb7463c857374ea13576dc97f1132073748beb5e3523c13cd60e622286

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-cp314-cp314-pyemscripten_2026_0_wasm32.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.8.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c25378510cf5fd8642e13315aad6a15b5a8106d9819220b93dde250b731790d
MD5 5b55ae3969950eb0c0c62c0605cc3cf0
BLAKE2b-256 953c8afb925aae8582e8bc2f2a6edaadea2e09be7fc6e3a579b730231e61d2bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b48feee674e1eb62cc646828a41c2873a5a5b12a29fcbf3afc623665d9cfd1ea
MD5 91028af0f9b6c04a6ed103b9cee34576
BLAKE2b-256 9d49160ab6b4f680d1a1e8c48fc1ad993559a1d6af603d87b52151e5a272ae6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c664c3cc943cdf847930f4fa2bad4df3d2ba4d44318cc8b56d1553b63bdf8e6d
MD5 446dfcd77dcc86da41ce2a69bc0081ec
BLAKE2b-256 2e42ba8942a984a9bfd2c1fbfcb94bdf5eeb7da3559af4299ec5ab68ebc2a54f

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d5e84fdfbfa1be3cba9d7432d3121281cb64dbfb4b4bae19895f22b5812f5c7
MD5 c25bc9d0ad02e7cfdc9c1e92bb85688c
BLAKE2b-256 f28699c0097c84e116dca308b6ad3231df8abb6ffb426bfbade9ea77aabe594c

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 691bcf037bb2bd0abe2538f6b5d63d52d26e176af6baf6c3c992af0e8c2d6630
MD5 62c968e24df89b7987fa9e8542bd7568
BLAKE2b-256 4355942c2f662a840f409394aa93d9d567296945ca465948b0809c239d123c0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 40a08f2fbfed1c8ac80e1e2398577f2e8f26def7da74f294e89da215b7b7d842
MD5 93a8bae05a0d948a33e8ba8e57ca121c
BLAKE2b-256 52dc64d9e957fec344c8b9107a7346d8e3ab7268194d1518e71514040bbd3f3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 a07199007bee6fd88a7816dae54012418fc173d4daa6842f446fdfc9592abd01
MD5 980c274934eeaa6c821b6f038031ac57
BLAKE2b-256 c1e71ab3be70f8e6a4b2b18998a069ba1e2f7255dcd85593fda815ea015d99f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 7ce348dc679825c7fcfa2a43375fbd63014c388ccffa5b22dd4c66e15c2f1588
MD5 61c4fef7533913e3178e1d6660281b3f
BLAKE2b-256 1934781fff5e19ef664349c611ebc349cae0acbdfd8026df3b6cbce1f8acce1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 b21318083763f9e36e092e13100bf27bb97199953a058c1f7c4ffd38e189afe0
MD5 62750dc133b630581a8d92a0bdb8abaf
BLAKE2b-256 06b94ab3d1b1efcec41181c87871cb198649da518a52a5443638f7de5ed08f2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 eb2fbe8782c8633fd36769d49d731d465bd2abce71efe012eabe602d6bc0e406
MD5 b47e7280fe5caa7ab7e6c9004fdb1b6b
BLAKE2b-256 aa3c1a5c7b5d4df038c2c7c4ecf40f305ffb4c2bbcdfac685e1930f2ce84e312

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a73c5d043df0107b5f2de8eb1a55b2522158650374cc760a106265e7857569d4
MD5 cc259d9f151b7b0d23af5d730dc61a07
BLAKE2b-256 bf5d97364213820080a2c910fe8be909f0026e4da630bb86147b5ae193bea2a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8ce550941c9433facdbfea16b74d62c7574c6eabddfd42c385453d55622ad1f2
MD5 96f07ee7034afc2c44293924b9faa035
BLAKE2b-256 abd39c584d419644835f9fff4c8951c38a051e26b1209338fd5eac839eacce77

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 a8ce263760cbb1d4300fd2e55424ba5d6fa30b5382f2789d9f4ecb0c955a0ffb
MD5 89480fd7e27b1eeb9f9b77c036801f78
BLAKE2b-256 852afe8a13c49949ad6928f1f2dbc160b20dd6d9ce800138d08e428743db8011

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 808df258dfa6b77cb9f5d5d8bfd369047022a4f6fe8cee1e25370a7caadc247f
MD5 f18cf958a1e7e680a68f8072a88fe601
BLAKE2b-256 b3b6984873e142adf0f60e1bf392a1e8af1db1dcda2df95d1c481e9538bd75a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3086d18594a23889a92fcaaf1b099e220eac986d269fa087b32c521175038d14
MD5 c3828268627239af557ebf990424d84b
BLAKE2b-256 bebe145002c0d81131e30e009f0c2525a0adc98604dd10505c8cbdc1d025565e

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ea92999bc276d9eb93cfab2f15dfaa9bc082cbb0abf0c8ccbf4ab0cea1bbbca
MD5 c6aecc128ece2448d2ae99b40126e16a
BLAKE2b-256 265086c3736956bcb113810aecabdb9ee9a321d16fe02c2fd856a255a2f65741

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20a60ab20e727692b62c8ea723f0c032b602252101f7eeedf6d50dfad640e113
MD5 e8faa529856dfb2bfe21c9c52cbb5ca2
BLAKE2b-256 1a3f183d604e25682c19687b1de24ac7f14998bf39509f4773aa9f7ce9be148a

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbf2c0f4a58408de6182643eab45c37a5e114998e10f7344bd258ae56900bb2f
MD5 dd24a0d21b307d3e15c7901a823d4067
BLAKE2b-256 0f2a238082e1642cd11e4cce764343de47d2a786e1932b4de4b0818c2c7f13a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f5c0a5f04c6d12da12ddce58c2d8880559f7a3adfd439b4f04ed556544d1a3e9
MD5 5c0dd973d5ab9a24b4a022c633f08f0f
BLAKE2b-256 175350be90c248fd6358b483a9d582b1cc0200cb80b8eea7aae524a73c86a391

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 91fdf94ab779b706b77b4e8ec704c362704b05f6c9c8370afec329f3b2fccb2c
MD5 ea80aa835a43405483f3508f4ba5abef
BLAKE2b-256 970dab152b664e84aa6911a21daea9ce0be62f0515b93cb045cfdedfec115967

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 37f38e332b0555740434881428fd2de9251072dc6c1258d51a04d472a1265538
MD5 1188b8f4294f73469693439a58be4921
BLAKE2b-256 ebde741d910ac9374b829512e8f24eb1a5da01357d34192279390e5324b749b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 ae7a0918c990a9c4686170bdae64c9153297add3cef9ed9dba8d247ceb0eae20
MD5 43a195ec3141f6238d2aca8a7d7edfdf
BLAKE2b-256 ee0778e0f8297a8fe8da8434cc7fd1ed9e3333e9f6cb81d414c1228b53002f95

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9912436eba2b8efce57460376134db1b6de0e8cf060ad6f61d8869e8dd079a2a
MD5 3b868435ca5b994b770a8bbd6662bb3f
BLAKE2b-256 e282f8af5cb661d20fab2412a6892e2cc5346d5d2761abbc39adb5242e55978e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8b71702595027c3ff5321d7d95865010102b989fed4ef86f2e32272cb70fcb27
MD5 fee7abf469bc65b38f0ce93bb9465443
BLAKE2b-256 41ea60aeacabf3ad3a1242c76a0499198e07d39a2c3d38d08b7a2ad62b6657cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5453d81a8cd3b7afee4b955845782cc8b679b53d9fc04f657dd80872fe9c276d
MD5 c7aa190f1d28c402ae5a4e14a269227b
BLAKE2b-256 4dd64140095f79acdcc6952cdd0c9ed1c6b0ee7335594bab86074b82e03b9fe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2634a83100e2d3ac4b165bb9cafa5963655f166f526135efa9b21b86d2d9aed9
MD5 8a19b4512239d4e6b265a159b8735ed5
BLAKE2b-256 fa80bcc65fbd574ac426e8e9f4e328dad46a5c08cb489b58bce49c2ae7aaf315

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c587f480c6aa005c26889ec2f4d9d1608825193d366987cb222ce141dbc97bf
MD5 e7535fc10e8863b713c01e9c7f2f6948
BLAKE2b-256 e54cfd6f42baf7d1f1399d5bf9d56bb5888f33595e3b6f0877455dbf168742b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0dd2830dfad35f1acc03186aa1d409754dec67ae7627ef04ff366a0e8a7be1f9
MD5 e0d39adc74d460724f18e7aa069ef775
BLAKE2b-256 40621c07b9bad8b4e6a6af52ea165fc3f623a17f90a9a9603202eaa02268ddb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8341f14393e4e7750ad13428257d131f5fd8c73031ae12c7e4c02b9df4988051
MD5 974b6dae9cb278601f974379304deae4
BLAKE2b-256 8bb868d1c79f9620c5b55746655818d7b01cfecd4f585177f06ad2f2ce197b8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0f979621080c72986bdba4ae28c2350bd6972fc79adc502868a32e64bb8a41c
MD5 af848d26535ad19599920508b8776f31
BLAKE2b-256 6df413bd963d5f56b3dc9261f62828cf822286723eeee89de3360eb39b644aec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 002f7c41ed61675c27dd01b932063d1cb04c47ecc1255cede7acf8dbc7d222e8
MD5 475ac51389034d02563d50aa3265efc2
BLAKE2b-256 25e8f39eecf409afbfb883af7bb2d78efea1f3cb6d524689ecd554124af11a57

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 65ff7b396b52a96a6a86ca482b59a24af91200d651dc1f6c162e0e4fc95d2dc4
MD5 f15ac06c12235a7716b753157ffad2e8
BLAKE2b-256 9d0a925f68ab54b4022edf640b98fef146f90528c52bb827ef9b748c524c09c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 60eb51fa554b040159f946cf4edb7465d5ea424a73ae6ee30641072fa368c55c
MD5 f2ac62fd91ad65e8aff14a769c2da081
BLAKE2b-256 18592f05fce6ce95a1f863dde6bf1213d3868c8f9ac077ec237fa67def4d1777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 219c95bc0e92b0aead6fe47ea38fa7ba5ff4e546ae657678fe177d9bff9e79b3
MD5 b459f222fec0be0750f3b0af30fb9d03
BLAKE2b-256 9f646a7a644ca135ca601f8ab474ae3af626135b86d686411d12a3acaffb04c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06c30ad1fae26cfd93b507f7b0ef7c9b696cf0778b1f4bba3b92e69e2532a811
MD5 339c31dfa3c87ddcc3dedace537a7799
BLAKE2b-256 dba39a41724a0e084a1bcccbfb457206aa1ffab378851897edaafb6df9a22ad2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d5600f78aa3048de1df346bf014f31763b7b7cb5a89a6c623a7a18766854950
MD5 478efb9ce8bb7f04363dc8e6d14142dd
BLAKE2b-256 cacdcd9d3e1b855db192ba6e621cebcd9df83d069ab7e4cf2378213b7218e7da

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd77cf6b554db1795311dcf73ad22af30100b6d66b22f0f1b4866cc4f69d6994
MD5 331c59518113861753c496dec81edd72
BLAKE2b-256 1268a8f490cd229053eb696933e3835f8afda9293d5229561b9d6339d93abc50

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 828128e5c61c9c1b024cdf7473f20f6f29fab61e4d8cb9a85a385f2b32aa3faa
MD5 e2dc0eb83c80ee322e344b10ed334fad
BLAKE2b-256 87c88c4c65b06010e552a82f8fff02f746904bc6597790fc8f60459b9c900669

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2224f6f27c5f977ccdb9a25d95fc1805dc3a395ca0381b613209f7cb7ef4c71e
MD5 546352280d607ed7321586dc5dd30608
BLAKE2b-256 27757cd5d76fb386dcc94e0728f76205a0affd7156b2bce42ca509bc757212ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e05a2a2dda0d579cc09080ececcd76c7b80eb3101bd0c744d1ff94ef5e1dbd43
MD5 2caf23a876ead5e46e78382558bf0f74
BLAKE2b-256 654127d844db3b18aabb7154a1702d6e65e9469a0111d17ec2b6569dcf1da270

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 9245f7d869881532f3734b2d254a8caca6e75fc73be9ffaacb4917cb376500eb
MD5 7b51b552060885ec29db12035f8b5b54
BLAKE2b-256 84932144e9006847d531f0c21b1739b9a8613ab5dece8d70c9c9262c74bb2651

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 849adb83469c43048420c45c9e39d942067424a61683d28d9190f4a1915a857a
MD5 e88bfab0ec466cab961e8567db94a72e
BLAKE2b-256 73f9757a2f4b7edcd85af92967ee54e1a8d039c1dab9812bdc4c83ae04bbfd23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 40e1eb4ed04955024fc7ae152c0d102325cf051638a5c42cd2f36a9f12ee4fcb
MD5 f97d807094b24e569c5c7c70ff3c333b
BLAKE2b-256 a42c8fbbc4f93f2011301bb5414af771f31f315f4bf0509db9aa018c5c8196c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c82932277d4dacee40fd20111d8ae33db679e2bf1c60a293332cbcc607f9005a
MD5 6ff7c31d785b3a7e8bc218a8873fdde3
BLAKE2b-256 7e6600fdf6ef359706551c85d6451900589c490959162e7065e23786efb06b04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 407911ee0709c1118570431c9c140c7bda6c9491db104f51346494c552c86989
MD5 0c3e4b67f9b2d94f630e5182af37a83c
BLAKE2b-256 d1b784c99fcb7e8d8ace11ac043f75adbdb69064f58f9b42337758edc94494f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef94ffa1649455e82c922fe895caaf01e6ba15e550986d81c1e8f337c8701133
MD5 8e8b6af22d63153c9e679d294dd8b243
BLAKE2b-256 c4cd5611e59f4ecf51463d1817cd1bdf8b0bdcf7815732f7fd668d1ceb1694af

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 617cc64cbdc5c70d15c45eddb981b462807f5390ad325e5806b7450762291194
MD5 1647c008baee49e491c162cdc2f6dac3
BLAKE2b-256 af5e2d0ceadc5eed3649ea691b2c9f8c00294ad69e9c387a4f4f26484cecdf58

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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.8.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87e32dae5f305a889cd6d0a41b737db4efdef15f075a777e1299e1819521d2b8
MD5 e2ebe6a988c8d8bd1d008f346d8b6587
BLAKE2b-256 82c802a4b5282b9e098c31d6860b29a49d3811bbb10eee25955f578165fd2e00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for boost_histogram-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33d2e63ac29a828ab02580ff603149b417e062afbd84f80e2d4fbe1dc326068d
MD5 d76c296e5ff677a8bda17b61282af96b
BLAKE2b-256 7ef5aba99f82d8e61606cdcb86081b9361189810b21ff9317c1f2ab569978aa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for boost_histogram-1.8.0-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 Sentry Error logging StatusPage Status page