Skip to main content

iminuit

https://scikit-hep.org/assets/images/Scikit--HEP-Project-blue.svg https://img.shields.io/pypi/v/iminuit.svg https://img.shields.io/conda/vn/conda-forge/iminuit.svg https://coveralls.io/repos/github/scikit-hep/iminuit/badge.svg?branch=develop https://github.com/scikit-hep/iminuit/actions/workflows/docs.yml/badge.svg?branch=main https://zenodo.org/badge/DOI/10.5281/zenodo.3949207.svg ascl:2108.024 https://img.shields.io/gitter/room/Scikit-HEP/iminuit https://mybinder.org/badge_logo.svg

iminuit is a Jupyter-friendly Python interface for the Minuit2 C++ library maintained by CERN’s ROOT team.

Minuit was designed to optimize statistical cost functions, for maximum-likelihood and least-squares fits. It provides the best-fit parameters and error estimates from likelihood profile analysis.

The iminuit package brings additional features:

  • Builtin cost functions for statistical fits to N-dimensional data

    • Unbinned and binned maximum-likelihood + extended versions

    • Template fits with error propagation

    • Least-squares (optionally robust to outliers)

    • Gaussian penalty terms for parameters

    • Cost functions can be combined by adding them: total_cost = cost_1 + cost_2

    • Visualization of the fit in Jupyter notebooks

  • Support for SciPy minimizers as alternatives to Minuit’s MIGRAD algorithm (optional)

  • Support for Numba accelerated functions (optional)

Minimal dependencies

iminuit is promised to remain a lean package which only depends on numpy, but additional features are enabled if the following optional packages are installed.

  • numba: Cost functions are partially JIT-compiled if numba is installed.

  • matplotlib: Visualization of fitted model for builtin cost functions

  • ipywidgets: Interactive fitting in Jupyter notebooks, see example below (also requires matplotlib)

  • PySide6: Interactive fitting outside of Jupyter notebooks (also requires matplotlib)

  • scipy: SciPy minimizers, Minos intervals for arbitrary confidence levels, and more

  • unicodeitplus: Render names of model parameters in simple LaTeX as Unicode

Use the extras iminuit[numba], iminuit[plot], iminuit[ipywidgets], iminuit[qt], iminuit[interactive] (both), iminuit[scipy], iminuit[unicode], or iminuit[all] to install them with pip.

Documentation

Checkout our large and comprehensive list of tutorials that take you all the way from beginner to power user. For help and how-to questions, please use the discussions on GitHub or gitter.

Lecture by Glen Cowan

In the exercises to his lecture for the KMISchool 2022, Glen Cowan shows how to solve statistical problems in Python with iminuit. You can find the lectures and exercises on the Github page, which covers both frequentist and Bayesian methods.

Glen Cowan is a known for his papers and international lectures on statistics in particle physics, as a member of the Particle Data Group, and as author of the popular book Statistical Data Analysis.

In a nutshell

iminuit can be used with a user-provided cost functions in form of a negative log-likelihood function or least-squares function. Standard functions are included in iminuit.cost, so you don’t have to write them yourself. The following example shows how to perform an unbinned maximum likelihood fit.

import numpy as np
from iminuit import Minuit
from iminuit.cost import UnbinnedNLL
from scipy.stats import norm

x = norm.rvs(size=1000, random_state=1)

def pdf(x, mu, sigma):
    return norm.pdf(x, mu, sigma)

# Negative unbinned log-likelihood, you can write your own
cost = UnbinnedNLL(x, pdf)

m = Minuit(cost, mu=0, sigma=1)
m.limits["sigma"] = (0, np.inf)
m.migrad()  # find minimum
m.hesse()   # compute uncertainties
Output of the demo in a Jupyter notebook

Interactive fitting

iminuit optionally supports an interactive fitting mode in Jupyter notebooks.

Animated demo of an interactive fit in a Jupyter notebook

High performance when combined with numba

When iminuit is used with cost functions that are JIT-compiled with numba (JIT-compiled pdfs are provided by numba_stats ), the speed is comparable to RooFit with the fastest backend. numba with auto-parallelization is considerably faster than the parallel computation in RooFit.

doc/_static/roofit_vs_iminuit+numba.svg

More information about this benchmark is given in the Benchmark section of the documentation.

Citation

If you use iminuit in a scientific work, please cite us. A generic BibTeX entry is:

@article{iminuit,
  author={Hans Dembinski and Piti Ongmongkolkul et al.},
  title={scikit-hep/iminuit},
  DOI={10.5281/zenodo.3949207},
  publisher={Zenodo},
  year={2020},
  month={Dec},
  url={https://doi.org/10.5281/zenodo.3949207}
}

The DOI and URL in this entry point always to the latest release of iminuit. You can also cite the actual release that you used, please follow the Zenodo link, which offers entries for common bibliography formats for all iminuit releases.

The recommended scientific reference for the MINUIT algorithms is:

@article{James:1975dr,
    author = "James, F. and Roos, M.",
    title = "{Minuit: A System for Function Minimization and Analysis of the Parameter Errors and Correlations}",
    reportNumber = "CERN-DD-75-20",
    doi = "10.1016/0010-4655(75)90039-9",
    journal = "Comput. Phys. Commun.",
    volume = "10",
    pages = "343--367",
    year = "1975"
}

Partner projects

  • numba_stats provides faster implementations of probability density functions than scipy, and a few specific ones used in particle physics that are not in scipy.

  • boost-histogram from Scikit-HEP provides fast generalized histograms that you can use with the builtin cost functions.

  • jacobi provides a robust, fast, and accurate calculation of the Jacobi matrix of any transformation function and building a function for generic error propagation.

Versions

The 2.x series has introduced breaking interfaces changes with respect to the 1.x series. There are no plans to introduce further breaking changes.

All interface changes from 1.x to 2.x are documented in the changelog with recommendations how to upgrade. To keep old scripts running, pin your major iminuit version to <2: the command pip install 'iminuit<2' installs the 1.x series.

Release files for iminuit 2.33.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for iminuit 2.33.0
File Size Uploaded
iminuit-2.33.0.tar.gz 1.9 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for iminuit 2.33.0
File
iminuit-2.33.0-cp315-cp315t-win_arm64.whl CPython 3.15 CPython 3.15 free-threading Windows ARM64 Details
iminuit-2.33.0-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
iminuit-2.33.0-cp315-cp315t-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 Details
iminuit-2.33.0-cp315-cp315t-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 Details
iminuit-2.33.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
iminuit-2.33.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
iminuit-2.33.0-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
iminuit-2.33.0-cp315-cp315t-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64 Details
iminuit-2.33.0-cp315-cp315-win_arm64.whl CPython 3.15 CPython 3.15 Windows ARM64 Details
iminuit-2.33.0-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
iminuit-2.33.0-cp315-cp315-win32.whl CPython 3.15 CPython 3.15 Windows x86-32 Details
iminuit-2.33.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl CPython 3.15 CPython 3.15 PyEmscripten 2026.5+ WebAssembly Details
iminuit-2.33.0-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
iminuit-2.33.0-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
iminuit-2.33.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
iminuit-2.33.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
iminuit-2.33.0-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
iminuit-2.33.0-cp315-cp315-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 macOS 10.15+ x86-64 Details
iminuit-2.33.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl CPython 3.15 CPython 3.15 iOS 13.0+ x86-64 Simulator Details
iminuit-2.33.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl CPython 3.15 CPython 3.15 iOS 13.0+ ARM64 Simulator Details
iminuit-2.33.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl CPython 3.15 CPython 3.15 iOS 13.0+ ARM64 Device Details
iminuit-2.33.0-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
iminuit-2.33.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
iminuit-2.33.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
iminuit-2.33.0-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
iminuit-2.33.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
iminuit-2.33.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
iminuit-2.33.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
iminuit-2.33.0-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
iminuit-2.33.0-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
iminuit-2.33.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
iminuit-2.33.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
iminuit-2.33.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl CPython 3.14 CPython 3.14 PyEmscripten 2026.0+ WebAssembly Details
iminuit-2.33.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
iminuit-2.33.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
iminuit-2.33.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
iminuit-2.33.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
iminuit-2.33.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
iminuit-2.33.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
iminuit-2.33.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl CPython 3.14 CPython 3.14 iOS 13.0+ x86-64 Simulator Details
iminuit-2.33.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl CPython 3.14 CPython 3.14 iOS 13.0+ ARM64 Simulator Details
iminuit-2.33.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl CPython 3.14 CPython 3.14 iOS 13.0+ ARM64 Device Details
iminuit-2.33.0-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
iminuit-2.33.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
iminuit-2.33.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
iminuit-2.33.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl CPython 3.13 CPython 3.13 PyEmscripten 2025.0+ WebAssembly Details
iminuit-2.33.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
iminuit-2.33.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
iminuit-2.33.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
iminuit-2.33.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
iminuit-2.33.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
iminuit-2.33.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
iminuit-2.33.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl CPython 3.13 CPython 3.13 iOS 13.0+ x86-64 Simulator Details
iminuit-2.33.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl CPython 3.13 CPython 3.13 iOS 13.0+ ARM64 Simulator Details
iminuit-2.33.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl CPython 3.13 CPython 3.13 iOS 13.0+ ARM64 Device Details
iminuit-2.33.0-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
iminuit-2.33.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
iminuit-2.33.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
iminuit-2.33.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
iminuit-2.33.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
iminuit-2.33.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
iminuit-2.33.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
iminuit-2.33.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
iminuit-2.33.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
iminuit-2.33.0-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
iminuit-2.33.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
iminuit-2.33.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
iminuit-2.33.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
iminuit-2.33.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
iminuit-2.33.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
iminuit-2.33.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
iminuit-2.33.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
iminuit-2.33.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
iminuit-2.33.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
iminuit-2.33.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
iminuit-2.33.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
iminuit-2.33.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
iminuit-2.33.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
iminuit-2.33.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
iminuit-2.33.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
iminuit-2.33.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
iminuit-2.33.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
iminuit-2.33.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
iminuit-2.33.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
iminuit-2.33.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
iminuit-2.33.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
iminuit-2.33.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size: 62.3 MB

Release files / iminuit-2.33.0.tar.gz

Download URL iminuit-2.33.0.tar.gz
Size 1.9 MB
Tags Source
SHA-256 checksum
How to use checksums
275f3daa1d4f8c33579b96276d7c5fb680a7cfb6fb8bea9a4245a1500d5d328b
BLAKE2b-256 checksum
How to use checksums
42d0e31af328165497a569e403cbf5545fce7899be5c43a20ff3f23f2753185d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315t-win_arm64.whl

Download URL iminuit-2.33.0-cp315-cp315t-win_arm64.whl
Size 793.0 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
26f4a86569b128e37396197a70ed96fca4a573f003deb49128db94041c8b04fb
BLAKE2b-256 checksum
How to use checksums
616149197a32f2eca87b9938ba441becf224cf8dced72962993805156d7bd2dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315t-win_amd64.whl

Download URL iminuit-2.33.0-cp315-cp315t-win_amd64.whl
Size 621.6 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
7a3e007bb4e4d11f0ffb3d4c791134d59b6c46571b3208ccdf391516a47505c0
BLAKE2b-256 checksum
How to use checksums
7accb449c0d8ac4e35d789a412fc112a2f54cb9bfab98d5583607380cfe53245
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL iminuit-2.33.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4a09bd0e6a279cf9ea559aaced6e8cf56c7753741c5a11dcdce18f39fdc0c859
BLAKE2b-256 checksum
How to use checksums
f84f87a3e67f2ec65f3aa9e7948c3fbf5eab9d389adff87923568589ef7a9d00
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL iminuit-2.33.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6a262caf7ac4d1d877d5838b2e0eb81187a5d4a6bed131c77f0d6e37a2965433
BLAKE2b-256 checksum
How to use checksums
67ca4659dd576143e4dc6d7e442baa6b55347f1f4493e4b0236edd32c4348299
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL iminuit-2.33.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 472.6 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
db71770717e9e43deba60112cb3b02bf54f72e536e1cbc3406f5a9e31be95acd
BLAKE2b-256 checksum
How to use checksums
d362df13543f4d76effa24e8fd1408cc14979a46aac433d72c63db7c2345170d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL iminuit-2.33.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 435.4 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
649c15fa20259b7777bad1e5bc905943fec9f63254d2e1506e3a67e8ac61900a
BLAKE2b-256 checksum
How to use checksums
7aff8efd050ad7ca155b16e6a5a786ee5d236ec4488f07391b1cf9ca20ec6ec9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315t-macosx_11_0_arm64.whl

Download URL iminuit-2.33.0-cp315-cp315t-macosx_11_0_arm64.whl
Size 434.1 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
452964a8b89b1438463d7dfc68815863e5f36d995fe4d3469ca70147e303d59d
BLAKE2b-256 checksum
How to use checksums
dd60775ba2fa77d1fd0c21c3cf7f3a84af8b928e46928e3f392f05bacd9d6ee4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315t-macosx_10_15_x86_64.whl

Download URL iminuit-2.33.0-cp315-cp315t-macosx_10_15_x86_64.whl
Size 477.3 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
b30fb5c5c137dd7bc3df8215fcf6db90c6efe2bb0b22d07f83a8b23780242164
BLAKE2b-256 checksum
How to use checksums
5fc11023b9aa460c26d60858266a96a5b857d16deebebb6889f8f0a653f6ff3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315-win_arm64.whl

Download URL iminuit-2.33.0-cp315-cp315-win_arm64.whl
Size 781.0 kB
Tags CPython 3.15 Windows ARM64
SHA-256 checksum
How to use checksums
66d9dcca06d45c921805a6e8c4fc396939e2536eda2c7d04193cb0239db6fc2d
BLAKE2b-256 checksum
How to use checksums
044e3ed29d7ea19b289ba7f28b7516851a6c9c331798aaa1cdb21a1459557f55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315-win_amd64.whl

Download URL iminuit-2.33.0-cp315-cp315-win_amd64.whl
Size 609.7 kB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
ca33bea35231c8337823f9901f80c67ee797dee63e318233550ceafcf4ebf18f
BLAKE2b-256 checksum
How to use checksums
a0d64a4500d8adf68bdbcace6106b978aef65162098c311ec77e0460b1a50418
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315-win32.whl

Download URL iminuit-2.33.0-cp315-cp315-win32.whl
Size 569.9 kB
Tags CPython 3.15 Windows x86-32
SHA-256 checksum
How to use checksums
51e1dc95649799f5414601db857d4b173d593cfb65505c6c7a67afac816ce9ae
BLAKE2b-256 checksum
How to use checksums
282e12e3c333e958d3f33c7ff3a0f63c63c8195c35835816af0290ce0428d3f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl

Download URL iminuit-2.33.0-cp315-cp315-pyemscripten_2026_5_wasm32.whl
Size 318.3 kB
Tags CPython 3.15 PyEmscripten 2026.5+ WebAssembly
SHA-256 checksum
How to use checksums
9a554ff4a0bf0364d0d2831deb60eab0ae142d254e3dd16648232f1db8cb7f04
BLAKE2b-256 checksum
How to use checksums
004ad5e083d0ac9a97f557ffb6f67ea9b614c11f4c16ec4c91d20e65389d2ffc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL iminuit-2.33.0-cp315-cp315-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
eb3656a592785b9433c86c1d0b14b418ca39990189f2dc7001bca6191770bd71
BLAKE2b-256 checksum
How to use checksums
31ed339a7f85fdd2863c5b9561084ac2b64a3625979b024b7942e37ce3a51636
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL iminuit-2.33.0-cp315-cp315-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
652b3471a266b363b8945b864b57766f9595865d9c924c5c2636333cbf89d380
BLAKE2b-256 checksum
How to use checksums
4df3b7e091cad52355eb3a9d4d0ce0b768c309214b269b36446f997c970fe154
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL iminuit-2.33.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 469.3 kB
Tags CPython 3.15 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a0fc77e634c0e94ade501d8afd70ecb353d255464effdabd2ff3f3a015885b7c
BLAKE2b-256 checksum
How to use checksums
9a02d2a69973a1462b8efc4d8dbca020bc5d773cc8d3ed323eedc4864548c924
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL iminuit-2.33.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 433.7 kB
Tags CPython 3.15 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5fd4eae421118153bd8d9d43aac73ba2532370f647a376c8f558e7c2619ec209
BLAKE2b-256 checksum
How to use checksums
c8f20ce6c39c45e3dde7cd431ba5b85966d071af4340d8237c04506ef2d3b341
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315-macosx_11_0_arm64.whl

Download URL iminuit-2.33.0-cp315-cp315-macosx_11_0_arm64.whl
Size 415.7 kB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ea8b3406a3134090731dae819d81af470e46e7e272fbb2edb91697856fc6a94c
BLAKE2b-256 checksum
How to use checksums
e8bd4f8978cb4fb21c412b4b9b8e9d547ac5ce0375dffe75ddacdc9fae08e563
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315-macosx_10_15_x86_64.whl

Download URL iminuit-2.33.0-cp315-cp315-macosx_10_15_x86_64.whl
Size 458.6 kB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
0147f8832abc82d58131e8492b286ca4888f7f037ac2326026432dde138d2358
BLAKE2b-256 checksum
How to use checksums
cc2a18cb2a840bdce8fcd234bc113955dd8192adb3b1d46a8bef9ee706c00a44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl

Download URL iminuit-2.33.0-cp315-cp315-ios_13_0_x86_64_iphonesimulator.whl
Size 458.7 kB
Tags CPython 3.15 iOS 13.0+ x86-64 Simulator
SHA-256 checksum
How to use checksums
55f6c4461020a3db1245ced56aa9239dfe4ea76d18923d1883ed3367e118d810
BLAKE2b-256 checksum
How to use checksums
d86030182f66c81b9bcb18135f632b7881137488252400f52936b92abe94ea62
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl

Download URL iminuit-2.33.0-cp315-cp315-ios_13_0_arm64_iphonesimulator.whl
Size 415.3 kB
Tags CPython 3.15 iOS 13.0+ ARM64 Simulator
SHA-256 checksum
How to use checksums
b599a4cc6184d510e0e66140859be79bbf72ff822ad1ec00e1614e32a7756d3b
BLAKE2b-256 checksum
How to use checksums
04622dd83bfe7948175d6dbd4c10912e1f7d5c9460cad605b808a9f5c988773f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl

Download URL iminuit-2.33.0-cp315-cp315-ios_13_0_arm64_iphoneos.whl
Size 406.9 kB
Tags CPython 3.15 iOS 13.0+ ARM64 Device
SHA-256 checksum
How to use checksums
e5b61fa0d3fa768752d74afd5312674319765e14cc9462af80314db8e00ba7ad
BLAKE2b-256 checksum
How to use checksums
47ce717d4cc6702e0ed52df8ed49725c191186c78afc5a65b642c1751dc22d76
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314t-win_arm64.whl

Download URL iminuit-2.33.0-cp314-cp314t-win_arm64.whl
Size 793.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
50c6e6710954ab694ec69c4e6b7aad4e4713cf0999082900311b06415168545b
BLAKE2b-256 checksum
How to use checksums
278b16dbf16f40f9b1a2a8ef64d2ecf4a7e3cdb6a9df23ab1428f4de90795a7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314t-win_amd64.whl

Download URL iminuit-2.33.0-cp314-cp314t-win_amd64.whl
Size 621.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
d03056e2e79679d3b51377c9f543622380c64101bc74911a793a2ed471bb7be7
BLAKE2b-256 checksum
How to use checksums
5939f7662b477c29406d25446cc712e70d5e73c3b609352627c158b70ec2756e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL iminuit-2.33.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
495cc45d09aab85a2f7e2e6afafb154ad7c75330271474e1d23ee9a7fdee5e09
BLAKE2b-256 checksum
How to use checksums
211d6c0e622c10f6e64c6cbed833e091beaacdc4d2cd79d77e7b1c8ec14ccd35
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL iminuit-2.33.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
aec7207f4ff0c9784fd3cdb231565a15eef20dada3029825a15e40c8a976c7c3
BLAKE2b-256 checksum
How to use checksums
874e8aa90612d0d5fc8e6e2a40abda8f9e602d0a40fe6279b9657deb0837ad01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL iminuit-2.33.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 471.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0ddd209e05ba6fc14e544740d4617882e48ade0025a5c0432da381f263fbea79
BLAKE2b-256 checksum
How to use checksums
b870427f11cc5fbb03dee45198330d7cc71ec83a5a73cda65c5057a32f478c17
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL iminuit-2.33.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 434.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e2535124a880019c19556587db3257cf2c361d65be556f9735d231ec7d1528a3
BLAKE2b-256 checksum
How to use checksums
5b377ac302c4f2e1a224a0d49be9208bea7ea213173ce270fdb6f303fd2693da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL iminuit-2.33.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 434.2 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9e9d2f93e2fe49d1aa896a503c494df93014995741756eca704bf7ae72c4ea7d
BLAKE2b-256 checksum
How to use checksums
1026b92bdb6527651ce3be4b2c05e64128729c48963093fff9f8c01075fb0fc0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL iminuit-2.33.0-cp314-cp314t-macosx_10_15_x86_64.whl
Size 477.4 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
5e148fbcb0a0089ca427d646c04402c5889fece7269d4afc2ec7befa47c96268
BLAKE2b-256 checksum
How to use checksums
e08363e7a2afebdee6c8f7a7592f0be5442643382e834f4efa23edb48c760471
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314-win_arm64.whl

Download URL iminuit-2.33.0-cp314-cp314-win_arm64.whl
Size 781.0 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
436f583ed6fdb3490726125274e7b65839d694add16a58264939d7378fd32998
BLAKE2b-256 checksum
How to use checksums
4f03f630ee5ae34177e89c0a273763bf16bab87f78b44d001d3029485775b8c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314-win_amd64.whl

Download URL iminuit-2.33.0-cp314-cp314-win_amd64.whl
Size 609.7 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
f8b366e90c3f5a940acc4a1213ebd8faa17461eea857b8bb7ebc22fe20304226
BLAKE2b-256 checksum
How to use checksums
13b002b3fc6df69aa21075b8186d3e253dfa2a22338f8f5d31bbd25cf005aca9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314-win32.whl

Download URL iminuit-2.33.0-cp314-cp314-win32.whl
Size 569.5 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
f1581e75e48b1d3519d3c71ac3b78d41458f71ce6f38e93e81807b4737741de4
BLAKE2b-256 checksum
How to use checksums
e3b1abd341c21747d37bea4cd06e6e7b7342fbc930cf78f438a549c672aa6966
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl

Download URL iminuit-2.33.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Size 318.4 kB
Tags CPython 3.14 PyEmscripten 2026.0+ WebAssembly
SHA-256 checksum
How to use checksums
1917d7e777aac9e896a773dd963b83b7bbcb5870b27bb191c3f29d91ce216e4d
BLAKE2b-256 checksum
How to use checksums
e76a367bab5f364f63dbfb6d8d36ce30bf17bcc0ab6849a9aa68ee3ed88e16dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL iminuit-2.33.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d76230431d2667f06386340278a11f912f84997dd5aa1bf5c0e0cdf8f705b5c5
BLAKE2b-256 checksum
How to use checksums
0e03313d293fb6b4a73f2c11822e290489aa3ce5e6b7e0a7acf1ca6b3ddc33d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL iminuit-2.33.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
874575b57a8e9e1b519d4d2d0073e55981f2235b17bd3f439decfc47a74002d1
BLAKE2b-256 checksum
How to use checksums
7b6ad214314a7b4287732ebf051ec0cd8ed40fa7394dcc86af0f6edac8e7d3d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL iminuit-2.33.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 469.3 kB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
fae1f1efb8770b7a7a49b0e9643e493149d3f5391f7ae47b60319be2e2e808aa
BLAKE2b-256 checksum
How to use checksums
c8d890e376a19d98e8d27f3850575a020bae1d39d3dda9836a256e0533511324
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL iminuit-2.33.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 433.7 kB
Tags CPython 3.14 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
92fa0d6f8615a283576cdb1ca607bc1c322730a74c971a3ba819d09360fcd7f2
BLAKE2b-256 checksum
How to use checksums
92fa8da7de8f9fc9c038fa8bb54f452941de861a4e7c8ad91248ae1bab65bb2e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL iminuit-2.33.0-cp314-cp314-macosx_11_0_arm64.whl
Size 415.7 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f7e660dd87ef8f8b9063a81ce0b2a1b83b47acc2382a95fbfd127576d6be2a59
BLAKE2b-256 checksum
How to use checksums
f94f44e5f431c64764354e9fa71aa0415b89d11fc8585132c25a5eb4798994aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL iminuit-2.33.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 458.6 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
e52c4078e2305778ffbe25fbcf648f53694c98dd2d356a850981803b74072a2f
BLAKE2b-256 checksum
How to use checksums
fb8f5233719a645454e38af7c6db098adaa992cc787bf1650afe5b12e172083c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl

Download URL iminuit-2.33.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Size 458.7 kB
Tags CPython 3.14 iOS 13.0+ x86-64 Simulator
SHA-256 checksum
How to use checksums
ce6e4348a5e8d0ea927fb9586306f45d836fea9f5542ad777420d74f5edd1da3
BLAKE2b-256 checksum
How to use checksums
991b234aa216744f029af1400d565f000cc8d5b5ab6d41f1ed6dc019c63e7e6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl

Download URL iminuit-2.33.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Size 415.3 kB
Tags CPython 3.14 iOS 13.0+ ARM64 Simulator
SHA-256 checksum
How to use checksums
f158f58851d96a26d27b50d606335915ce79d798265600e6039260bd034964cc
BLAKE2b-256 checksum
How to use checksums
02e3b0b937acfb893690dfdfe40ecff12454288e1e4f68aba31b2b31d03e3085
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl

Download URL iminuit-2.33.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Size 406.9 kB
Tags CPython 3.14 iOS 13.0+ ARM64 Device
SHA-256 checksum
How to use checksums
8a7e575bd72a6ff310d35fb7a7687cb0bce2db77a97c79485161bc7a9ca83a9f
BLAKE2b-256 checksum
How to use checksums
72acc03c5c239c3a6bb4a4503bf12147e4fbbe072db23c313582232ae28c9887
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp313-cp313-win_arm64.whl

Download URL iminuit-2.33.0-cp313-cp313-win_arm64.whl
Size 759.5 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
509f277511495ce94f295df56ffcaf67c7d9e21ad7d92a26de6b219192860e6e
BLAKE2b-256 checksum
How to use checksums
e7521be8e76e2741479aca4494f952806dd38e75c879c830bb9abc3861cfbe86
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp313-cp313-win_amd64.whl

Download URL iminuit-2.33.0-cp313-cp313-win_amd64.whl
Size 594.0 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
032b68ed1cd08f64a07499d980f57debb88098339bb813458a36cf1bf4aa8a38
BLAKE2b-256 checksum
How to use checksums
fd58e22ba95193dcc2ed2c0db13bf0c01bb3cbd3f915cffd8db8f708e9c4b812
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp313-cp313-win32.whl

Download URL iminuit-2.33.0-cp313-cp313-win32.whl
Size 558.7 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
0a2acd617f0424cce37831168cba88c94376ab83cc8d65c31820499e25ae1106
BLAKE2b-256 checksum
How to use checksums
eabfbb2bdc6cf30444336cc182e242697c5de73161569811c1425dd73e0b9752
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl

Download URL iminuit-2.33.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Size 316.9 kB
Tags CPython 3.13 PyEmscripten 2025.0+ WebAssembly
SHA-256 checksum
How to use checksums
00e3cdbfaba896af9ad9dcff95fd56306a93f7515e5a627c302ce94808f44831
BLAKE2b-256 checksum
How to use checksums
5059acfce6dad744178eff24bacfe76a64cd218e755e672e7dc2edce64f4a2f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL iminuit-2.33.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2b789d75ae200b42ee478170738ea55bfb06f3f46fd4d49eb45b2142889886bb
BLAKE2b-256 checksum
How to use checksums
091836f97106c316b0f7985959fc19e04e425409c37cad623f473b9b261e1fb9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL iminuit-2.33.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
9a6c83022537c825919b763b61ef137498c2baafe0da36d79599ecab3e1e87f4
BLAKE2b-256 checksum
How to use checksums
d2817b49912e1ea4c7c786a5bcd9140052b216478b829af377da0fe493524acc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL iminuit-2.33.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 469.0 kB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
be819c42d30a54c9f86a04dfe3109e348099f35e187c300030cc34d215fc60da
BLAKE2b-256 checksum
How to use checksums
936b401240bf42c1dd4f68908db4aeb7001808e49977a60f185d5866b6fd528f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL iminuit-2.33.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 432.3 kB
Tags CPython 3.13 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1f6ad9b7921c1d8a13b332595371357d7c99b85442e0a43967732bae7f649b50
BLAKE2b-256 checksum
How to use checksums
c9becb302ccee7130ebb9fd735b5697c03793ba2220ab642b8d58a72af8e1f8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL iminuit-2.33.0-cp313-cp313-macosx_11_0_arm64.whl
Size 414.9 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4a0777d61518004b888c7cfe10ca776ed6d9cbaa8db5cbd5c4087ab9bdcba4cd
BLAKE2b-256 checksum
How to use checksums
543732723481f3dc97b04b03c6feb20001b658f76ccdd181ac02df5f113b30e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL iminuit-2.33.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 458.2 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
658380f93ce9872407207714af174e69fb2b03e3b222d2166ce35eb6d447e072
BLAKE2b-256 checksum
How to use checksums
2786b6d4e2d904745febec2faeeb8b5d44ba32ffeec1c8dd853fb507164b1690
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl

Download URL iminuit-2.33.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Size 458.3 kB
Tags CPython 3.13 iOS 13.0+ x86-64 Simulator
SHA-256 checksum
How to use checksums
31787fe9d228582dd070cfc642bbbd902eae1e6668d98448a8a9c91f4479f036
BLAKE2b-256 checksum
How to use checksums
b7c04ca3006c3cea74b9bfbb4753ca32bb906468c27b4c6a54081f94598ad2a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl

Download URL iminuit-2.33.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Size 414.6 kB
Tags CPython 3.13 iOS 13.0+ ARM64 Simulator
SHA-256 checksum
How to use checksums
dc4162848c1d2df1c64def8306b46b3a768d7685f6a85b7905c18d07d9f84372
BLAKE2b-256 checksum
How to use checksums
5a0b5fa56e70f159e4738b541d2ae1c9351ea58b35636c02732a28cabca21819
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl

Download URL iminuit-2.33.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Size 406.4 kB
Tags CPython 3.13 iOS 13.0+ ARM64 Device
SHA-256 checksum
How to use checksums
ab57a2095ab988eef824f77e2b05be56f20c5fabab2fbf10b5a99f3b0021ef71
BLAKE2b-256 checksum
How to use checksums
499da65576d7aee74bef5b19c646d4148cd41f7cfcaf95c409e0581d912232b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp312-cp312-win_arm64.whl

Download URL iminuit-2.33.0-cp312-cp312-win_arm64.whl
Size 759.5 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
94e1c2403abaf4fb96ffd15447cea7e63d9ad6c7fea24ca3ee23a1305de65ec3
BLAKE2b-256 checksum
How to use checksums
b56e78981d6b013a89bcf00325e6e29e31ac7862f32144b4bc418d5aa6a7988b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp312-cp312-win_amd64.whl

Download URL iminuit-2.33.0-cp312-cp312-win_amd64.whl
Size 593.9 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
b9517a242dfb76662859705b02e976ae5bb96feb160c69da5cf5a1aea0e10436
BLAKE2b-256 checksum
How to use checksums
2dd7b9461b465654999b463cb8065863b186c12464b239751e4370899daa36d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp312-cp312-win32.whl

Download URL iminuit-2.33.0-cp312-cp312-win32.whl
Size 558.8 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
88fbcf9ece9da85b39cb8fc29e49e534c60c650f8f0be830682e6edb7703d076
BLAKE2b-256 checksum
How to use checksums
b03276f44907f2e8fb7eee200f62bd26d3a84bce486538e2cbd94eb8b97d5c2d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL iminuit-2.33.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4cfd8e06f94d475fa307c94dbcac69826daeaaa963589c3eb8fe472fe4301e53
BLAKE2b-256 checksum
How to use checksums
c4abb86f622c8688f8341f359326a424dfdfcf5e3c0f7ae7e538fabd11ab7ae6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL iminuit-2.33.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0c162de812bfc6374d36a481cfa7b37f853d900d0e215d18916686337d176602
BLAKE2b-256 checksum
How to use checksums
4f0fb12dd93af06fd7b525e77050be905bfb18a267e183c9ee55131c20458ea3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL iminuit-2.33.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 469.1 kB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
fea96c8b5cafa22c9be50b88a760a9c13906eb6fbba0fcf41299d0518df85554
BLAKE2b-256 checksum
How to use checksums
af4e246d91a73d565bf6ccd44b68e5cae4567f722a44e189bdeb18596c67eb76
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL iminuit-2.33.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 432.2 kB
Tags CPython 3.12 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a5f0bc19a7a1bb8ebcd97b2e69d8457c34529638fadccf78b40533538b0ad5b8
BLAKE2b-256 checksum
How to use checksums
c9a11e4e0a90d07b6c34fc5b9de3b6364197d370cdc2a26ffd0a0229dc425d6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL iminuit-2.33.0-cp312-cp312-macosx_11_0_arm64.whl
Size 414.9 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6040b5b9bd902a6d3e86ba3107d271302740f9e38f955e6e9e3653e500962e2d
BLAKE2b-256 checksum
How to use checksums
f09cac3283b01a88fe38d4f2d59561c3419fa6f3c796f501c0ad0ed131a8c4d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL iminuit-2.33.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 458.0 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
f388e242a1e67c7c07c4af3d79df83c3bdbc3db85f19cf0befc08a536ee63671
BLAKE2b-256 checksum
How to use checksums
afb3bf663685da6d88cd62c54db32decc24f18de118a618b60aa43e857243054
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp311-cp311-win_arm64.whl

Download URL iminuit-2.33.0-cp311-cp311-win_arm64.whl
Size 757.3 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
6c7c300877fb3cb9595ae40a6896550f9b1b96a73c4fd877874b562fdb5e97e6
BLAKE2b-256 checksum
How to use checksums
07ddc2103d3e03eb3e0e644efd18d861009ebd57eb2590ef6e24dcd4766736b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp311-cp311-win_amd64.whl

Download URL iminuit-2.33.0-cp311-cp311-win_amd64.whl
Size 592.1 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
e491d4b5e216806715f239545df1599b5619005be9577397082acc1ccccf4590
BLAKE2b-256 checksum
How to use checksums
17e24f718ff25feae3259d07c8c88e73044b4ec4d812f0552d4da690a2894a65
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp311-cp311-win32.whl

Download URL iminuit-2.33.0-cp311-cp311-win32.whl
Size 557.9 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
ad91aaf74710f0f1e2a61f34bc92166640201795df8d8c0fba310115af743126
BLAKE2b-256 checksum
How to use checksums
28752fe6535434cb810cfce907d0a4b7c547c4eacdf76f2a2ea4b9c9636d5109
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL iminuit-2.33.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ff2dacb027183a566bb2cb69a5c0496fe5a5a9a5c2b010a51fa46e945fafb9a2
BLAKE2b-256 checksum
How to use checksums
c5317b61188adffe95c1cf06f921f66e2d5b8afa2b74129a4a0b0e6e8e3be710
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL iminuit-2.33.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
80548ef6f29840229c11a38931b805ed37637391ae0241824a8f01006e2846ba
BLAKE2b-256 checksum
How to use checksums
dbebe6a572280ac28a8ee2f000217205890951c0b7b20715cd15b8732630db50
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL iminuit-2.33.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 466.9 kB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
189279e7b7765402919689cd30c9a3aad46d346e6c99583e5bfe45bd098d3d5e
BLAKE2b-256 checksum
How to use checksums
5b520f69072839e3b78733b37590503771968ef2406cbdcfac2fa76c927d675c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL iminuit-2.33.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 431.3 kB
Tags CPython 3.11 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b10a8a4be5805edb923c06cb5b6a27d2fa55aea558e52719fde82d017bb72637
BLAKE2b-256 checksum
How to use checksums
99c0daae6654f0bbfef808f1bd70e4d04038a8814f0a670dede8aae3cc701bce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL iminuit-2.33.0-cp311-cp311-macosx_11_0_arm64.whl
Size 413.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1ca5be65fbf0a79fb654c85143b5918a3c8a587e4f91155ab1069dad667f0d4d
BLAKE2b-256 checksum
How to use checksums
b1bd3baabc7006ab64fcb52d536d6581a3270369eed4921675e8ff5fdb3409f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL iminuit-2.33.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 454.4 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
395e33b2c98cbb329e6cac003d851c10226d40e2692c438d8011c64f34f80adc
BLAKE2b-256 checksum
How to use checksums
5a3244d004770ca9c610f82d33fbbd292eebdcb08845335ad4609bef2a8eef2b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp310-cp310-win_amd64.whl

Download URL iminuit-2.33.0-cp310-cp310-win_amd64.whl
Size 590.8 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
c076ee4e9e5d84ab7b060fa2947c7625645b2840660ece889708109f72d4130f
BLAKE2b-256 checksum
How to use checksums
a81e100767f3b72a08ba620d886e2e5a907e2b3bf4f863134b4d95400dea4212
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp310-cp310-win32.whl

Download URL iminuit-2.33.0-cp310-cp310-win32.whl
Size 556.9 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
bcba6b438d674b3415811b56474e0f64a05a6f5ed1a5a31ab2193daf2bedc785
BLAKE2b-256 checksum
How to use checksums
91fef422eccaf917a66f54687c3aa6deb09b6a0786e4ba2bdd307b499b8696ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL iminuit-2.33.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ef74e6f031a6252668ce5462e3bcd5305f4bc1b84842d9cb565a8e2dbbf5d9c1
BLAKE2b-256 checksum
How to use checksums
f526bae6ac177a223baa546fcd4c8e6a15941a8a93889fd0e0073d0e5b546bef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL iminuit-2.33.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
29ab8f069104fea34c0432a635f260e78fb90150e8df21ec19b62f8e3a2bb228
BLAKE2b-256 checksum
How to use checksums
fd33118d21e36f10cf4c96b3467c46c604acf5421c76e59b0707a89e09fd41a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL iminuit-2.33.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 430.4 kB
Tags CPython 3.10 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0ae53249e82fd6e6d59b71a0cd02cffcb3732a2dfc86be7bea4c33c283b64476
BLAKE2b-256 checksum
How to use checksums
fdd8cb2af507f9f19f311055f55b1c019e1521f05b1138650c67a74c7eda2596
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL iminuit-2.33.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 491.5 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5c47159bab93dd8ea839506fc450c56d75582dec195530293757260f0a57c950
BLAKE2b-256 checksum
How to use checksums
f09d76c5e300743b6b9046e25eb3327cd5b2c6b2f3ab40c99dbbd23c3071775e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL iminuit-2.33.0-cp310-cp310-macosx_11_0_arm64.whl
Size 412.3 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
70261c52041fe3ef58712b690d17d0f163c87b8047b74f9f50838bf5033ea5d2
BLAKE2b-256 checksum
How to use checksums
55be0ba3debd1cd4141b894c520d3c8da5e29ea57e11bb14a47437442060611f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL iminuit-2.33.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 453.1 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c0dc0fa6ddf452a42f23a002e564d4a077443452a6497f1d15f1fdadace72de0
BLAKE2b-256 checksum
How to use checksums
272d43fda4da89d7969e204f8ec5d4d7d84ee393f5bcbb471a250cc4e96e1ae2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp39-cp39-win_amd64.whl

Download URL iminuit-2.33.0-cp39-cp39-win_amd64.whl
Size 592.2 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
e16d36eab1c32ddd35193d91fc333b14c876b5b829627ad0bbfdfc85c475949b
BLAKE2b-256 checksum
How to use checksums
46942096bd7a16f52433ce601837514c2e6d850b538cf46f3b49eab2ce18a5f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp39-cp39-win32.whl

Download URL iminuit-2.33.0-cp39-cp39-win32.whl
Size 557.6 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
6bb65c7758e9209681499a160a30372f01a9005d7920c8339e78014a5483cf21
BLAKE2b-256 checksum
How to use checksums
c60f4e79b4543881c7bb30266a2def80c62467253669aa6465082777b27eea9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL iminuit-2.33.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
fe8e614ad22e6d65e266b37cab725b54bf48ed3f493dee871092b1e06e862451
BLAKE2b-256 checksum
How to use checksums
f7fb599ba22ef6805c25f3b841c18aaafa5218b07242cd01575e13625f602d40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL iminuit-2.33.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 492.1 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b9ef8b4d2b059d33c96acdcc351e88a48c50c733c64eb20b832b320c40d01e8a
BLAKE2b-256 checksum
How to use checksums
e13269468ec4f34877c4de481887c7daeccd3d7a1ca851f7d0af12f6c01b1462
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL iminuit-2.33.0-cp39-cp39-macosx_11_0_arm64.whl
Size 412.4 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
83b99ca469b4095f55a9ca3ab71060d2c51775fb67f8e645c95ca6217426c718
BLAKE2b-256 checksum
How to use checksums
7c1595d29a3ba6386322eabb3ea64da477711f4adb0ddc37a411e8072102a201
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / iminuit-2.33.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL iminuit-2.33.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 453.2 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
93fc4c9adf4b4e3d2bb7385f7644c7a4e845d247e98a0496b67e0e4ea5f7279f
BLAKE2b-256 checksum
How to use checksums
8109792017cbafbd82d5835fa83967cb764c39941b4414a765968f18e13ac677
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

2.33.0 This release

88 release files

2.8.4

27 release files

2.8.2

27 release files

2.8.0

21 release files

2.6.1

21 release files

2.5.0

21 release files

2.4.0

21 release files

2.3.0

21 release files

2.2.1

21 release files

2.2.0

21 release files

2.1.0

21 release files

1.5.4

19 release files

1.5.3

19 release files

1.5.2

19 release files

1.5.1

19 release files

1.5.0

19 release files

1.4.9

19 release files

1.4.8

19 release files

1.4.7

19 release files

1.4.6

19 release files

1.4.5

19 release files

1.4.4

19 release files

1.4.3

19 release files

1.4.2

19 release files

1.4.1

19 release files

1.4.0

19 release files

1.3.9

31 release files

1.3.8

26 release files

1.3.7

25 release files

1.3.6

1 release file

1.3.3

1 release file

1.3.2

1 release file

1.3.1

1 release file

1.3

1 release file

1.2

1 release file

1.1.1

1 release file

1.1.0

1 release file

1.0.9

1 release file

1.0.8

1 release file

1.0.7

1 release file

1.0.6

1 release file

1.0.5

1 release file

1.0.4

1 release file

1.0.3

1 release file

1.0.2

1 release file

1.0.1

1 release file

1.0.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page