iminuit


Nameiminuit JSON
Version 2.30.1 PyPI version JSON
download
home_pageNone
SummaryJupyter-friendly Python frontend for MINUIT2 in C++
upload_time2024-10-08 07:39:04
maintainerNone
docs_urlNone
authorNone
requires_python>=3.9
licenseMinuit is from SEAL Minuit It's LGPL v2 http://seal.web.cern.ch/seal/main/license.html. For iminuit, I'm releasing it as MIT license: Copyright (c) 2012 Piti Ongmongkolkul Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Note: MIT license is GPL compatible, so it is an acceptable license for a wrapper, as can be seen here: http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html#GPLWrapper http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html#OrigBSD (L)GPL can be combined or included in code that does not impose more restrictive conditions.
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            .. |iminuit| image:: doc/_static/iminuit_logo.svg
   :alt: iminuit

|iminuit|
=========

.. version-marker-do-not-remove

.. image:: https://scikit-hep.org/assets/images/Scikit--HEP-Project-blue.svg
   :target: https://scikit-hep.org
.. image:: https://img.shields.io/pypi/v/iminuit.svg
   :target: https://pypi.org/project/iminuit
.. image:: https://img.shields.io/conda/vn/conda-forge/iminuit.svg
   :target: https://github.com/conda-forge/iminuit-feedstock
.. image:: https://coveralls.io/repos/github/scikit-hep/iminuit/badge.svg?branch=develop
   :target: https://coveralls.io/github/scikit-hep/iminuit?branch=develop
.. image:: https://github.com/scikit-hep/iminuit/actions/workflows/docs.yml/badge.svg?branch=main
   :target: https://scikit-hep.org/iminuit
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3949207.svg
   :target: https://doi.org/10.5281/zenodo.3949207
.. image:: https://img.shields.io/badge/ascl-2108.024-blue.svg?colorB=262255
   :target: https://ascl.net/2108.024
   :alt: ascl:2108.024
.. image:: https://img.shields.io/gitter/room/Scikit-HEP/iminuit
   :target: https://gitter.im/Scikit-HEP/iminuit
.. image:: https://mybinder.org/badge_logo.svg
   :target: https://mybinder.org/v2/gh/scikit-hep/iminuit/develop?filepath=doc%2Ftutorial

``iminuit`` is a Jupyter-friendly Python interface for the ``Minuit2`` C++ library maintained by CERN's `ROOT team <https://root.cern.ch>`_.

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 <https://doi.org/10.1140/epjc/s10052-022-11019-z>`_
  - 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, see example below (also requires ``matplotlib``)
- ``scipy``: Compute Minos intervals for arbitrary confidence levels
- ``unicodeitplus``: Render names of model parameters in simple LaTeX as Unicode

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 <https://github.com/KMISchool2022>`_, 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 <https://scholar.google.com/citations?hl=en&user=ljQwt8QAAAAJ&view_op=list_works>`_ 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 <https://www.pp.rhul.ac.uk/~cowan/sda/>`_.

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.

.. code:: python

    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

.. image:: doc/_static/demo_output.png
    :alt: Output of the demo in a Jupyter notebook

Interactive fitting
-------------------

``iminuit`` optionally supports an interactive fitting mode in Jupyter notebooks.

.. image:: doc/_static/interactive_demo.gif
   :alt: 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`_.

.. image:: doc/_static/roofit_vs_iminuit+numba.svg

More information about this benchmark is given `in the Benchmark section of the documentation <https://scikit-hep.org/iminuit/benchmark.html>`_.

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 <https://doi.org/10.5281/zenodo.3949207>`_, 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.

.. _changelog: https://scikit-hep.org/iminuit/changelog.html
.. _tutorials: https://scikit-hep.org/iminuit/tutorials.html
.. _discussions: https://github.com/scikit-hep/iminuit/discussions
.. _gitter: https://gitter.im/Scikit-HEP/iminuit
.. _jacobi: https://github.com/hdembinski/jacobi
.. _numba_stats: https://github.com/HDembinski/numba-stats
.. _boost-histogram: https://github.com/scikit-hep/boost-histogram
.. _numba: https://numba.pydata.org
.. _RooFit: https://root.cern/manual/roofit/

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "iminuit",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "Hans Dembinski <hans.dembinski@gmail.com>",
    "keywords": null,
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/9c/2f/885810178ce831150059e658394afb8d5256ee13713308221dd48c003682/iminuit-2.30.1.tar.gz",
    "platform": null,
    "description": ".. |iminuit| image:: doc/_static/iminuit_logo.svg\n   :alt: iminuit\n\n|iminuit|\n=========\n\n.. version-marker-do-not-remove\n\n.. image:: https://scikit-hep.org/assets/images/Scikit--HEP-Project-blue.svg\n   :target: https://scikit-hep.org\n.. image:: https://img.shields.io/pypi/v/iminuit.svg\n   :target: https://pypi.org/project/iminuit\n.. image:: https://img.shields.io/conda/vn/conda-forge/iminuit.svg\n   :target: https://github.com/conda-forge/iminuit-feedstock\n.. image:: https://coveralls.io/repos/github/scikit-hep/iminuit/badge.svg?branch=develop\n   :target: https://coveralls.io/github/scikit-hep/iminuit?branch=develop\n.. image:: https://github.com/scikit-hep/iminuit/actions/workflows/docs.yml/badge.svg?branch=main\n   :target: https://scikit-hep.org/iminuit\n.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3949207.svg\n   :target: https://doi.org/10.5281/zenodo.3949207\n.. image:: https://img.shields.io/badge/ascl-2108.024-blue.svg?colorB=262255\n   :target: https://ascl.net/2108.024\n   :alt: ascl:2108.024\n.. image:: https://img.shields.io/gitter/room/Scikit-HEP/iminuit\n   :target: https://gitter.im/Scikit-HEP/iminuit\n.. image:: https://mybinder.org/badge_logo.svg\n   :target: https://mybinder.org/v2/gh/scikit-hep/iminuit/develop?filepath=doc%2Ftutorial\n\n``iminuit`` is a Jupyter-friendly Python interface for the ``Minuit2`` C++ library maintained by CERN's `ROOT team <https://root.cern.ch>`_.\n\nMinuit 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.\n\nThe iminuit package brings additional features:\n\n- Builtin cost functions for statistical fits to N-dimensional data\n\n  - Unbinned and binned maximum-likelihood + extended versions\n  - `Template fits with error propagation <https://doi.org/10.1140/epjc/s10052-022-11019-z>`_\n  - Least-squares (optionally robust to outliers)\n  - Gaussian penalty terms for parameters\n  - Cost functions can be combined by adding them: ``total_cost = cost_1 + cost_2``\n  - Visualization of the fit in Jupyter notebooks\n- Support for SciPy minimizers as alternatives to Minuit's MIGRAD algorithm (optional)\n- Support for Numba accelerated functions (optional)\n\nMinimal dependencies\n--------------------\n\n``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.\n\n- ``numba``: Cost functions are partially JIT-compiled if ``numba`` is installed.\n- ``matplotlib``: Visualization of fitted model for builtin cost functions\n- ``ipywidgets``: Interactive fitting, see example below (also requires ``matplotlib``)\n- ``scipy``: Compute Minos intervals for arbitrary confidence levels\n- ``unicodeitplus``: Render names of model parameters in simple LaTeX as Unicode\n\nDocumentation\n-------------\n\nCheckout 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`_.\n\n**Lecture by Glen Cowan**\n\n`In the exercises to his lecture for the KMISchool 2022 <https://github.com/KMISchool2022>`_, 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.\n\n`Glen Cowan <https://scholar.google.com/citations?hl=en&user=ljQwt8QAAAAJ&view_op=list_works>`_ 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 <https://www.pp.rhul.ac.uk/~cowan/sda/>`_.\n\nIn a nutshell\n-------------\n\n``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.\n\n.. code:: python\n\n    import numpy as np\n    from iminuit import Minuit\n    from iminuit.cost import UnbinnedNLL\n    from scipy.stats import norm\n\n    x = norm.rvs(size=1000, random_state=1)\n\n    def pdf(x, mu, sigma):\n        return norm.pdf(x, mu, sigma)\n\n    # Negative unbinned log-likelihood, you can write your own\n    cost = UnbinnedNLL(x, pdf)\n\n    m = Minuit(cost, mu=0, sigma=1)\n    m.limits[\"sigma\"] = (0, np.inf)\n    m.migrad()  # find minimum\n    m.hesse()   # compute uncertainties\n\n.. image:: doc/_static/demo_output.png\n    :alt: Output of the demo in a Jupyter notebook\n\nInteractive fitting\n-------------------\n\n``iminuit`` optionally supports an interactive fitting mode in Jupyter notebooks.\n\n.. image:: doc/_static/interactive_demo.gif\n   :alt: Animated demo of an interactive fit in a Jupyter notebook\n\nHigh performance when combined with numba\n-----------------------------------------\n\nWhen ``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`_.\n\n.. image:: doc/_static/roofit_vs_iminuit+numba.svg\n\nMore information about this benchmark is given `in the Benchmark section of the documentation <https://scikit-hep.org/iminuit/benchmark.html>`_.\n\nCitation\n--------\n\nIf you use iminuit in a scientific work, please cite us. A generic BibTeX entry is::\n\n    @article{iminuit,\n      author={Hans Dembinski and Piti Ongmongkolkul et al.},\n      title={scikit-hep/iminuit},\n      DOI={10.5281/zenodo.3949207},\n      publisher={Zenodo},\n      year={2020},\n      month={Dec},\n      url={https://doi.org/10.5281/zenodo.3949207}\n    }\n\nThe 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 <https://doi.org/10.5281/zenodo.3949207>`_, which offers entries for common bibliography formats for all iminuit releases.\n\nThe recommended scientific reference for the MINUIT algorithms is::\n\n    @article{James:1975dr,\n        author = \"James, F. and Roos, M.\",\n        title = \"{Minuit: A System for Function Minimization and Analysis of the Parameter Errors and Correlations}\",\n        reportNumber = \"CERN-DD-75-20\",\n        doi = \"10.1016/0010-4655(75)90039-9\",\n        journal = \"Comput. Phys. Commun.\",\n        volume = \"10\",\n        pages = \"343--367\",\n        year = \"1975\"\n    }\n\nPartner projects\n----------------\n\n* `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.\n* `boost-histogram`_ from Scikit-HEP provides fast generalized histograms that you can use with the builtin cost functions.\n* `jacobi`_ provides a robust, fast, and accurate calculation of the Jacobi matrix of any transformation function and building a function for generic error propagation.\n\nVersions\n--------\n\nThe 2.x series has introduced breaking interfaces changes with respect to the 1.x series. There are no plans to introduce further breaking changes.\n\nAll 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.\n\n.. _changelog: https://scikit-hep.org/iminuit/changelog.html\n.. _tutorials: https://scikit-hep.org/iminuit/tutorials.html\n.. _discussions: https://github.com/scikit-hep/iminuit/discussions\n.. _gitter: https://gitter.im/Scikit-HEP/iminuit\n.. _jacobi: https://github.com/hdembinski/jacobi\n.. _numba_stats: https://github.com/HDembinski/numba-stats\n.. _boost-histogram: https://github.com/scikit-hep/boost-histogram\n.. _numba: https://numba.pydata.org\n.. _RooFit: https://root.cern/manual/roofit/\n",
    "bugtrack_url": null,
    "license": "Minuit is from SEAL Minuit It's LGPL v2 http://seal.web.cern.ch/seal/main/license.html.  For iminuit, I'm releasing it as MIT license:  Copyright (c) 2012 Piti Ongmongkolkul  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.   Note: MIT license is GPL compatible, so it is an acceptable license for a wrapper, as can be seen here: http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html#GPLWrapper http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html#OrigBSD  (L)GPL can be combined or included in code that does not impose more restrictive conditions.",
    "summary": "Jupyter-friendly Python frontend for MINUIT2 in C++",
    "version": "2.30.1",
    "project_urls": {
        "Documentation": "https://scikit-hep.org/iminuit",
        "Repository": "http://github.com/scikit-hep/iminuit"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7529193284e3b105a301aba5644203832af8ccbaf63e7772aa5ac09cf34e531d",
                "md5": "14970a656f9a16686d3ffbfb6bf30e43",
                "sha256": "680fd13e2334edbd1d999824050acb88cbb02369e1aa90323b1b68ef1ad8026e"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "14970a656f9a16686d3ffbfb6bf30e43",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 408497,
            "upload_time": "2024-10-08T07:37:44",
            "upload_time_iso_8601": "2024-10-08T07:37:44.947812Z",
            "url": "https://files.pythonhosted.org/packages/75/29/193284e3b105a301aba5644203832af8ccbaf63e7772aa5ac09cf34e531d/iminuit-2.30.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdf6b19220a5121be724dc8f1de91ad1a530c930af657bd5155839f57ed22803",
                "md5": "53481c4676f3fbc764301f1369003953",
                "sha256": "572c7a4d856c0aaa7ddb7605aca638ae28db1d978e6c1ef728e968d649bbc39c"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "53481c4676f3fbc764301f1369003953",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 367476,
            "upload_time": "2024-10-08T07:37:47",
            "upload_time_iso_8601": "2024-10-08T07:37:47.338080Z",
            "url": "https://files.pythonhosted.org/packages/cd/f6/b19220a5121be724dc8f1de91ad1a530c930af657bd5155839f57ed22803/iminuit-2.30.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "061934eafd1f1039c674f1d3976e1a9ea4107d898c9f2189155d8b50c7bd30b4",
                "md5": "9e9d52814117e564e9e56f0121219c22",
                "sha256": "3a4fdac3419754fc08ef0b1579289eec6a5226d102d4ecba155084df9d7418e0"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9e9d52814117e564e9e56f0121219c22",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 405171,
            "upload_time": "2024-10-08T07:37:48",
            "upload_time_iso_8601": "2024-10-08T07:37:48.541526Z",
            "url": "https://files.pythonhosted.org/packages/06/19/34eafd1f1039c674f1d3976e1a9ea4107d898c9f2189155d8b50c7bd30b4/iminuit-2.30.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2e0a7abab4e8d5bdd5a314bceaa00ee1ab5d0106b22389ecf61a84b1d574988",
                "md5": "894e5e60e0eb696d19ec389ca6769816",
                "sha256": "8e3f843d32c7b4b53aaa4cc513611a6b169d25fb3050a45c202cc7e7d370bd77"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "894e5e60e0eb696d19ec389ca6769816",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 461803,
            "upload_time": "2024-10-08T07:37:50",
            "upload_time_iso_8601": "2024-10-08T07:37:50.513924Z",
            "url": "https://files.pythonhosted.org/packages/a2/e0/a7abab4e8d5bdd5a314bceaa00ee1ab5d0106b22389ecf61a84b1d574988/iminuit-2.30.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b1b77519163d795154130946582cd0624fb8ae62e1a21ab01db754b63125764",
                "md5": "aaaa153c8a594ed3ce9ad719e52e5fad",
                "sha256": "c447191fec530086bc3ed3ca929ecc9177021f367f66c8dc0b2c5d00bac733f3"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aaaa153c8a594ed3ce9ad719e52e5fad",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 439337,
            "upload_time": "2024-10-08T07:37:51",
            "upload_time_iso_8601": "2024-10-08T07:37:51.801582Z",
            "url": "https://files.pythonhosted.org/packages/2b/1b/77519163d795154130946582cd0624fb8ae62e1a21ab01db754b63125764/iminuit-2.30.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f69bccf8591a3d85c4f57cbef68ddd40fce0e2fd0c52483671eb024abb3ba88f",
                "md5": "869d147a2de4c975589fea155b1f566b",
                "sha256": "f16897d3247de400abd6add36b5d05e142c67e5d16a5ac5a07148839de10e200"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "869d147a2de4c975589fea155b1f566b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1328985,
            "upload_time": "2024-10-08T07:37:53",
            "upload_time_iso_8601": "2024-10-08T07:37:53.857089Z",
            "url": "https://files.pythonhosted.org/packages/f6/9b/ccf8591a3d85c4f57cbef68ddd40fce0e2fd0c52483671eb024abb3ba88f/iminuit-2.30.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b03e5e1965ea70259c22b9bfc3add96238d248cd3b1b5a28e5f61ad4d89e9e56",
                "md5": "d4497954309880ec1ed81ac7007a692a",
                "sha256": "8f95b57d2bd51a2b0dc1f155c8f2cd2fba940128af2a0b3f48fb08d8335f7bd2"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d4497954309880ec1ed81ac7007a692a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1518986,
            "upload_time": "2024-10-08T07:37:55",
            "upload_time_iso_8601": "2024-10-08T07:37:55.877982Z",
            "url": "https://files.pythonhosted.org/packages/b0/3e/5e1965ea70259c22b9bfc3add96238d248cd3b1b5a28e5f61ad4d89e9e56/iminuit-2.30.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f8c638f477241e4d3b3e652a342fcbb5e67ee19f47554609a57b9fdb67382d5",
                "md5": "15b4677d6bfb842e272b3f37ada58562",
                "sha256": "e960367605a2ae090e7c612944aca99268774a67b5f5a05de3cacf442b62beb7"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "15b4677d6bfb842e272b3f37ada58562",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 1400134,
            "upload_time": "2024-10-08T07:37:57",
            "upload_time_iso_8601": "2024-10-08T07:37:57.987990Z",
            "url": "https://files.pythonhosted.org/packages/2f/8c/638f477241e4d3b3e652a342fcbb5e67ee19f47554609a57b9fdb67382d5/iminuit-2.30.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23848e4930df2c34b5dbbeb9eebb7640612dc874d6d7f2ef5ddddb62149bd076",
                "md5": "6cc3d789c468da84af9ae343435c12aa",
                "sha256": "d8b926109320dc3837214c9aaa0a1613181538b3c9545f270cd3568d24962fa5"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "6cc3d789c468da84af9ae343435c12aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 321344,
            "upload_time": "2024-10-08T07:38:00",
            "upload_time_iso_8601": "2024-10-08T07:38:00.002866Z",
            "url": "https://files.pythonhosted.org/packages/23/84/8e4930df2c34b5dbbeb9eebb7640612dc874d6d7f2ef5ddddb62149bd076/iminuit-2.30.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21300c47ca698142429c667e617e90ac38975219bb29efe176157342e46d5f17",
                "md5": "a918d05b70d52b23069f3d3c2833ee0f",
                "sha256": "a97e8a71747d19508a2df0b673279de078798807c2aa29b5e2b37eed10c1b405"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a918d05b70d52b23069f3d3c2833ee0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 367721,
            "upload_time": "2024-10-08T07:38:01",
            "upload_time_iso_8601": "2024-10-08T07:38:01.737050Z",
            "url": "https://files.pythonhosted.org/packages/21/30/0c47ca698142429c667e617e90ac38975219bb29efe176157342e46d5f17/iminuit-2.30.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ab44b872ac807d51dd5c752a326da3f58f93386f0d6f900be9d1039ed530779",
                "md5": "c31d65985fc18fc44eb1fc85d731c9a5",
                "sha256": "c81b0cc1a6842c6af32e7495b273ce98a7d11f1ffe2df18ba2372c6011c1bcf5"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c31d65985fc18fc44eb1fc85d731c9a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 409645,
            "upload_time": "2024-10-08T07:38:03",
            "upload_time_iso_8601": "2024-10-08T07:38:03.822406Z",
            "url": "https://files.pythonhosted.org/packages/6a/b4/4b872ac807d51dd5c752a326da3f58f93386f0d6f900be9d1039ed530779/iminuit-2.30.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47f757cb9d4b373f76bc8fca646eb7acea0a20830c2883b36969e3a9500020b3",
                "md5": "37d331924440abc03484c4bb8f4c69d5",
                "sha256": "7c5e98134cf459b1a805b41b48d3495e2e481e615f52a5bd9c14596a8d302226"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "37d331924440abc03484c4bb8f4c69d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 368709,
            "upload_time": "2024-10-08T07:38:04",
            "upload_time_iso_8601": "2024-10-08T07:38:04.939794Z",
            "url": "https://files.pythonhosted.org/packages/47/f7/57cb9d4b373f76bc8fca646eb7acea0a20830c2883b36969e3a9500020b3/iminuit-2.30.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6192308eb176bc6c1ad5a875285f426cc539f2e7b4f020e91548b67b8c5609d5",
                "md5": "48c69196cad5ed618316d2dc50b2b22d",
                "sha256": "b023369e0fad4c4a306f622d865a30a9316aecdc48a389d3c86638b81ed7d57d"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "48c69196cad5ed618316d2dc50b2b22d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 407294,
            "upload_time": "2024-10-08T07:38:06",
            "upload_time_iso_8601": "2024-10-08T07:38:06.827306Z",
            "url": "https://files.pythonhosted.org/packages/61/92/308eb176bc6c1ad5a875285f426cc539f2e7b4f020e91548b67b8c5609d5/iminuit-2.30.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11a8b72eb150f480623ffee9dc71eaf2d717399bbba6fb499b8ac4fbbb4abff3",
                "md5": "3e80c397fcb3067ebeeed265ba168491",
                "sha256": "3e9cdbb69dbe46e8bdbba70068c1d06d8a4adee9d4e0592e40a0292e27c1af44"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3e80c397fcb3067ebeeed265ba168491",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 462588,
            "upload_time": "2024-10-08T07:38:08",
            "upload_time_iso_8601": "2024-10-08T07:38:08.813942Z",
            "url": "https://files.pythonhosted.org/packages/11/a8/b72eb150f480623ffee9dc71eaf2d717399bbba6fb499b8ac4fbbb4abff3/iminuit-2.30.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38bca3386afa6046b187b9a5063009b87b1972885c834877beb7f3e700d52312",
                "md5": "5f7ad5099752db0e52ff8b42f14fd155",
                "sha256": "a5f60d874898e3b9bf2d74151df345253e89e24bbba387efcd0410fd6d68a8e6"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f7ad5099752db0e52ff8b42f14fd155",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 440797,
            "upload_time": "2024-10-08T07:38:10",
            "upload_time_iso_8601": "2024-10-08T07:38:10.833060Z",
            "url": "https://files.pythonhosted.org/packages/38/bc/a3386afa6046b187b9a5063009b87b1972885c834877beb7f3e700d52312/iminuit-2.30.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8226a158a57d86468dc974f7a29701c75736b33364cf6e8e18010e13f1838d72",
                "md5": "fe20313baf425379094ebccf84948ebc",
                "sha256": "7ecc6309507cfb3337a6f0a6a86a935967a9295ce42605f0e1ff0ca2f109d959"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fe20313baf425379094ebccf84948ebc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1330279,
            "upload_time": "2024-10-08T07:38:12",
            "upload_time_iso_8601": "2024-10-08T07:38:12.201822Z",
            "url": "https://files.pythonhosted.org/packages/82/26/a158a57d86468dc974f7a29701c75736b33364cf6e8e18010e13f1838d72/iminuit-2.30.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c4e5077292d19a3b03d0a8e9f54e725dfbb08b340f8b067c5d024debb850555",
                "md5": "a21945b695866424691b9c6d6677f879",
                "sha256": "7047911a45f366a7aba5c20fb7673451dd02231fd19ea9dd6cf6158681958c5d"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a21945b695866424691b9c6d6677f879",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1518907,
            "upload_time": "2024-10-08T07:38:14",
            "upload_time_iso_8601": "2024-10-08T07:38:14.373641Z",
            "url": "https://files.pythonhosted.org/packages/7c/4e/5077292d19a3b03d0a8e9f54e725dfbb08b340f8b067c5d024debb850555/iminuit-2.30.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b26b2e22b137d643f3bdf6d8b700a1f8c1e55f552a1656b8bcc37a130e4725f",
                "md5": "7b6efa407e7d7d2af9c31d27830dc46e",
                "sha256": "7f0e28e5e773a5cbe7448d0514a58e48ad9d8b2e5387c38816b1e33ce3d23048"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b6efa407e7d7d2af9c31d27830dc46e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 1401911,
            "upload_time": "2024-10-08T07:38:15",
            "upload_time_iso_8601": "2024-10-08T07:38:15.725219Z",
            "url": "https://files.pythonhosted.org/packages/2b/26/b2e22b137d643f3bdf6d8b700a1f8c1e55f552a1656b8bcc37a130e4725f/iminuit-2.30.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d4ce0be690d96a8602cce6199a65c6e2669767d2f9caba80eb15bce35cbcca0",
                "md5": "aa36909b5c5e926e98d850e4d1c45bde",
                "sha256": "6dc5f97fb3d915f7cd19d9e015ae4ccf4d20d4d1a0ef7f9a54316dd4ddfeee5d"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "aa36909b5c5e926e98d850e4d1c45bde",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 322134,
            "upload_time": "2024-10-08T07:38:17",
            "upload_time_iso_8601": "2024-10-08T07:38:17.048859Z",
            "url": "https://files.pythonhosted.org/packages/5d/4c/e0be690d96a8602cce6199a65c6e2669767d2f9caba80eb15bce35cbcca0/iminuit-2.30.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9f35931e51df5292398e8419c5b84817593b444d0a979560dd297a94846c55b",
                "md5": "d58312679e829ef17e6da01f700c8ae3",
                "sha256": "ef9b03c1e761312f019dfea95f49d1d46ab467558bb793181b927977a85e2ad9"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d58312679e829ef17e6da01f700c8ae3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 368774,
            "upload_time": "2024-10-08T07:38:18",
            "upload_time_iso_8601": "2024-10-08T07:38:18.348813Z",
            "url": "https://files.pythonhosted.org/packages/f9/f3/5931e51df5292398e8419c5b84817593b444d0a979560dd297a94846c55b/iminuit-2.30.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48c5d1ebeb5ff7135fa056bf6ee5a332cfc9bd910bb926478bfc67a69390963b",
                "md5": "10aedffdba6abe82a3c1b03e1482054b",
                "sha256": "a211d7fc26065c932ff52ca8be7aa7edec6b3f272ebc2f4f70f2ef7e3bb0a577"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "10aedffdba6abe82a3c1b03e1482054b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 411829,
            "upload_time": "2024-10-08T07:38:19",
            "upload_time_iso_8601": "2024-10-08T07:38:19.531889Z",
            "url": "https://files.pythonhosted.org/packages/48/c5/d1ebeb5ff7135fa056bf6ee5a332cfc9bd910bb926478bfc67a69390963b/iminuit-2.30.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e00481901aa432377d6996d6754c71a2ca343b0056918ec1235b35bebe0929c",
                "md5": "ab6c997b993baa2f185e9ee14d0efc86",
                "sha256": "ab9108fed788ac866ad9cf6976d6a26a4c8c51c05bf766ac88b2959d210afb4e"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ab6c997b993baa2f185e9ee14d0efc86",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 369502,
            "upload_time": "2024-10-08T07:38:21",
            "upload_time_iso_8601": "2024-10-08T07:38:21.288731Z",
            "url": "https://files.pythonhosted.org/packages/7e/00/481901aa432377d6996d6754c71a2ca343b0056918ec1235b35bebe0929c/iminuit-2.30.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6b0ca1cdad3fcce721dce2a286e148f94022370eeb60757ed2bbbf06720f012",
                "md5": "49f4434377540178f2ae4fbe6fd5ac61",
                "sha256": "a1194b7901f789d2480df97c1d8fdd937aece8f7785d1a3a31793d00e1f7c2c5"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "49f4434377540178f2ae4fbe6fd5ac61",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 402176,
            "upload_time": "2024-10-08T07:38:22",
            "upload_time_iso_8601": "2024-10-08T07:38:22.412702Z",
            "url": "https://files.pythonhosted.org/packages/d6/b0/ca1cdad3fcce721dce2a286e148f94022370eeb60757ed2bbbf06720f012/iminuit-2.30.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eab79aa445e8ff89f5d0edd8f906df7e388121802a0be2bfaae149fed059cb2d",
                "md5": "92ef14b402c7c48d25463ce396cb9d44",
                "sha256": "5e4abf238f245d0010069426b53794e38668472f1cef7ea1c7974ce66e231c08"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "92ef14b402c7c48d25463ce396cb9d44",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 461864,
            "upload_time": "2024-10-08T07:38:23",
            "upload_time_iso_8601": "2024-10-08T07:38:23.871749Z",
            "url": "https://files.pythonhosted.org/packages/ea/b7/9aa445e8ff89f5d0edd8f906df7e388121802a0be2bfaae149fed059cb2d/iminuit-2.30.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0632b2ee6959def66650b792b66b1ed82f46c4dfd19a9d6986f1541591a09a29",
                "md5": "a1847c267148a9399882b09a7c5a1d9c",
                "sha256": "d3d1041950fd5cecb30ea0f8aad563caee04074b475b86e257d0855da051b847"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1847c267148a9399882b09a7c5a1d9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 435939,
            "upload_time": "2024-10-08T07:38:25",
            "upload_time_iso_8601": "2024-10-08T07:38:25.199512Z",
            "url": "https://files.pythonhosted.org/packages/06/32/b2ee6959def66650b792b66b1ed82f46c4dfd19a9d6986f1541591a09a29/iminuit-2.30.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b6bab829d24aaa9752d57171afca3f3bcbc17a0f17440d131eaacece6172dc2",
                "md5": "f0d76d847d556ce6b317445f9b288c46",
                "sha256": "9ad4f0d64692cde1f71deffbdaffdb4208fea41db7a3a074162af2da4eef1491"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f0d76d847d556ce6b317445f9b288c46",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1325907,
            "upload_time": "2024-10-08T07:38:27",
            "upload_time_iso_8601": "2024-10-08T07:38:27.185308Z",
            "url": "https://files.pythonhosted.org/packages/5b/6b/ab829d24aaa9752d57171afca3f3bcbc17a0f17440d131eaacece6172dc2/iminuit-2.30.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e8bab28c609cb7afca63bcf965f548b6a9941733e5ad7e91632eca5d64a636d",
                "md5": "9cc87dbd97a4ad91a7c80946edd734b4",
                "sha256": "572ef4df2c83881eeb16dcb2fb9d7148a411b6081e2eb3b4d432f488930f5a14"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9cc87dbd97a4ad91a7c80946edd734b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1515456,
            "upload_time": "2024-10-08T07:38:28",
            "upload_time_iso_8601": "2024-10-08T07:38:28.659504Z",
            "url": "https://files.pythonhosted.org/packages/7e/8b/ab28c609cb7afca63bcf965f548b6a9941733e5ad7e91632eca5d64a636d/iminuit-2.30.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1b99aa312e1da1da4f12ade35284160e60e8ea1821cb1e5240708823ba12b72",
                "md5": "4d95b731aed3e5063a90dfe022e53c4c",
                "sha256": "5f07013bd611d302f16f930dd617a5f6e63fcc52dc38448db680c4f852880c34"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d95b731aed3e5063a90dfe022e53c4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 1397621,
            "upload_time": "2024-10-08T07:38:30",
            "upload_time_iso_8601": "2024-10-08T07:38:30.425483Z",
            "url": "https://files.pythonhosted.org/packages/a1/b9/9aa312e1da1da4f12ade35284160e60e8ea1821cb1e5240708823ba12b72/iminuit-2.30.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfc418993515f51bb59e2ac477fd714c8d85b8404094278c88b1c66fc295efc9",
                "md5": "f0e1c06d0eac011f85fc2e31a9f303c7",
                "sha256": "412c3463fc1fdf90722b03ea38674389cf293aff4126ac8677ed3c7bf67dd711"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "f0e1c06d0eac011f85fc2e31a9f303c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 322629,
            "upload_time": "2024-10-08T07:38:31",
            "upload_time_iso_8601": "2024-10-08T07:38:31.824337Z",
            "url": "https://files.pythonhosted.org/packages/df/c4/18993515f51bb59e2ac477fd714c8d85b8404094278c88b1c66fc295efc9/iminuit-2.30.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fad49c145cedb735ad9605f99065057c9dc558c4d801114a6585eafa3cc370e3",
                "md5": "3b08c62122375cd98a08b7a9cda1bf6c",
                "sha256": "2ff101602accddd41ec7fdbea6e727f187ab1c7c974404c817a96d2334575663"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3b08c62122375cd98a08b7a9cda1bf6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 369012,
            "upload_time": "2024-10-08T07:38:33",
            "upload_time_iso_8601": "2024-10-08T07:38:33.057650Z",
            "url": "https://files.pythonhosted.org/packages/fa/d4/9c145cedb735ad9605f99065057c9dc558c4d801114a6585eafa3cc370e3/iminuit-2.30.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd7d8edff8f4653d39947ff50b540e551b48f8a1841958bb87efbf0eaca54614",
                "md5": "839d2bc5b42bd671f8b7ff8a5d2ca73a",
                "sha256": "8e388f4f3a9297b599b13e7ce2063919ae4a67b8683a90be4f5a39c5921a7ce8"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "839d2bc5b42bd671f8b7ff8a5d2ca73a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 412017,
            "upload_time": "2024-10-08T07:38:34",
            "upload_time_iso_8601": "2024-10-08T07:38:34.248582Z",
            "url": "https://files.pythonhosted.org/packages/dd/7d/8edff8f4653d39947ff50b540e551b48f8a1841958bb87efbf0eaca54614/iminuit-2.30.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d69fe8a5d917fb66d42b361d9c276a0806972af852f4d89384a5143647666a16",
                "md5": "0178ad7421bbfa9b7490615dc7d8ce08",
                "sha256": "7eb453892aa1941debf59c482d7e5f41e33b44d35c62c93ae40221edcfa1544d"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0178ad7421bbfa9b7490615dc7d8ce08",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 369556,
            "upload_time": "2024-10-08T07:38:35",
            "upload_time_iso_8601": "2024-10-08T07:38:35.529975Z",
            "url": "https://files.pythonhosted.org/packages/d6/9f/e8a5d917fb66d42b361d9c276a0806972af852f4d89384a5143647666a16/iminuit-2.30.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa57e3d12250026902db9fba4d1726a51b546b684442a136a80ef92288532b92",
                "md5": "1b7f27981107712e5e5457483772cc8f",
                "sha256": "5b2479a1758eef449977f5be4d5abd07bb4d737d9ccb4cd7f19d61b95c0d51f2"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1b7f27981107712e5e5457483772cc8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 403174,
            "upload_time": "2024-10-08T07:38:36",
            "upload_time_iso_8601": "2024-10-08T07:38:36.928923Z",
            "url": "https://files.pythonhosted.org/packages/aa/57/e3d12250026902db9fba4d1726a51b546b684442a136a80ef92288532b92/iminuit-2.30.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "547db67813e4e58b21e3f71bc64ead08484c50294c13eecaaec6501f56f02c04",
                "md5": "6572615b14bcdb6c40ce68eeea399d8a",
                "sha256": "683b1938e2012c4bfc5456530169fa6be33267262c4d83d36dcdcdb57d957fdd"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6572615b14bcdb6c40ce68eeea399d8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 461841,
            "upload_time": "2024-10-08T07:38:38",
            "upload_time_iso_8601": "2024-10-08T07:38:38.419964Z",
            "url": "https://files.pythonhosted.org/packages/54/7d/b67813e4e58b21e3f71bc64ead08484c50294c13eecaaec6501f56f02c04/iminuit-2.30.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59c62eba67c47592d7bb395b14fdcb4c6bb7a2dcd6204edca1738f06e32d7545",
                "md5": "66236f63104d450f43c35418c07a8552",
                "sha256": "6416e84126ebaa13a3e603648a514801fbf4a8f8cd5f3272580c1a220d6962a2"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "66236f63104d450f43c35418c07a8552",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 435941,
            "upload_time": "2024-10-08T07:38:40",
            "upload_time_iso_8601": "2024-10-08T07:38:40.035144Z",
            "url": "https://files.pythonhosted.org/packages/59/c6/2eba67c47592d7bb395b14fdcb4c6bb7a2dcd6204edca1738f06e32d7545/iminuit-2.30.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "980cc7f6581d295ab80cb2e04d9edf05e6dba9025350027ca5ce619c47adf4a5",
                "md5": "f329b3dfe80e0f46397b20bf334fa973",
                "sha256": "b2a6943650883f67df82291df2bbb3dd99cf2c1bd75c35be95f46f896ca2cee5"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f329b3dfe80e0f46397b20bf334fa973",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1327062,
            "upload_time": "2024-10-08T07:38:41",
            "upload_time_iso_8601": "2024-10-08T07:38:41.499202Z",
            "url": "https://files.pythonhosted.org/packages/98/0c/c7f6581d295ab80cb2e04d9edf05e6dba9025350027ca5ce619c47adf4a5/iminuit-2.30.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa5572ce6dc9c10ee727abb1419a20a77676647ce96cb53647c2c7b0c0e46b17",
                "md5": "6a9bb696415a536f61eec48b46f429e4",
                "sha256": "d50abaceb7e510a6d1da1c1010d4b42d3cc7cca26fcf3c06f69dc3a1ecf606b5"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6a9bb696415a536f61eec48b46f429e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1514813,
            "upload_time": "2024-10-08T07:38:42",
            "upload_time_iso_8601": "2024-10-08T07:38:42.938202Z",
            "url": "https://files.pythonhosted.org/packages/fa/55/72ce6dc9c10ee727abb1419a20a77676647ce96cb53647c2c7b0c0e46b17/iminuit-2.30.1-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfd43a3d82c5c19b9e23e12e3358167f711b4f7403662d5ee5e2073b1e9cf64f",
                "md5": "406dfe337ebe5e45eb8019e48479e387",
                "sha256": "89ee6d13844aed2dfc3283ce1beb0e33721b07da5da8f09e38329b8c6ff8faf0"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "406dfe337ebe5e45eb8019e48479e387",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 1399527,
            "upload_time": "2024-10-08T07:38:44",
            "upload_time_iso_8601": "2024-10-08T07:38:44.787858Z",
            "url": "https://files.pythonhosted.org/packages/df/d4/3a3d82c5c19b9e23e12e3358167f711b4f7403662d5ee5e2073b1e9cf64f/iminuit-2.30.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06871286022848201d24b1b7c1a32564f11d1a6cdb1fe354ee0936075e96b975",
                "md5": "0616ae5d92afe1eca2388d8b7196d3f3",
                "sha256": "f1e394626248b50d29f9ad5c0fae2576d9ec55b540e340ec75c69b6f88ff92df"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "0616ae5d92afe1eca2388d8b7196d3f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 322512,
            "upload_time": "2024-10-08T07:38:46",
            "upload_time_iso_8601": "2024-10-08T07:38:46.143992Z",
            "url": "https://files.pythonhosted.org/packages/06/87/1286022848201d24b1b7c1a32564f11d1a6cdb1fe354ee0936075e96b975/iminuit-2.30.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "849c99a2b299577b6a1a83567757b3d904a629c90554c853eac09d1d48457bf1",
                "md5": "726d60996e3da1f484ab698f85543c33",
                "sha256": "2fc37baed2c5e6b15824deac530b74b3d9e6f263488826f11e7cde1ec2d8e92f"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "726d60996e3da1f484ab698f85543c33",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 369025,
            "upload_time": "2024-10-08T07:38:47",
            "upload_time_iso_8601": "2024-10-08T07:38:47.803764Z",
            "url": "https://files.pythonhosted.org/packages/84/9c/99a2b299577b6a1a83567757b3d904a629c90554c853eac09d1d48457bf1/iminuit-2.30.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1fc75c9c2dba815bf366348419d133108ccabb4cf04498d0d5a65f5d9baee9e",
                "md5": "a147b8282dee98ef6d2edb43423fe7aa",
                "sha256": "ef3a9c0e79f4c09e1c9dbe83a77659f5854a70d5841704252d8bf04c297455b0"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a147b8282dee98ef6d2edb43423fe7aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 408549,
            "upload_time": "2024-10-08T07:38:49",
            "upload_time_iso_8601": "2024-10-08T07:38:49.217475Z",
            "url": "https://files.pythonhosted.org/packages/f1/fc/75c9c2dba815bf366348419d133108ccabb4cf04498d0d5a65f5d9baee9e/iminuit-2.30.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1b0cfc6a5e110364449e4ee6121d532c84788319be74a7ec2d0b489033a2cf9",
                "md5": "29ab6663265ae5741ef809e987cd2b10",
                "sha256": "26710929843cc9087403eb831d71347a4ceabbafc1490ef2a9360b9d8b342616"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "29ab6663265ae5741ef809e987cd2b10",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 367623,
            "upload_time": "2024-10-08T07:38:50",
            "upload_time_iso_8601": "2024-10-08T07:38:50.578740Z",
            "url": "https://files.pythonhosted.org/packages/c1/b0/cfc6a5e110364449e4ee6121d532c84788319be74a7ec2d0b489033a2cf9/iminuit-2.30.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "906bb1e43d9c71691351909ac48c0fc3f98e19b91b9f22d55866ae8771332c81",
                "md5": "4511fc4e36b69ecfe0e5e43a26e358bc",
                "sha256": "316ea6c2fb3c6d797e7ad28933721a6ee2969dda69943c66e4ffba40fda8868d"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "4511fc4e36b69ecfe0e5e43a26e358bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 414016,
            "upload_time": "2024-10-08T07:38:51",
            "upload_time_iso_8601": "2024-10-08T07:38:51.974248Z",
            "url": "https://files.pythonhosted.org/packages/90/6b/b1e43d9c71691351909ac48c0fc3f98e19b91b9f22d55866ae8771332c81/iminuit-2.30.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f5c9293b1e16d155858faa67f7f66dc593eb54df0b474d853b170c4749f558e",
                "md5": "f8707035ccd8dc1b8f8f47fddc48f12c",
                "sha256": "691d3f2bd18a36f0a022704df954bc72de13e4dc4c9d56ffe8b44324371f34a0"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8707035ccd8dc1b8f8f47fddc48f12c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 402077,
            "upload_time": "2024-10-08T07:38:53",
            "upload_time_iso_8601": "2024-10-08T07:38:53.356490Z",
            "url": "https://files.pythonhosted.org/packages/2f/5c/9293b1e16d155858faa67f7f66dc593eb54df0b474d853b170c4749f558e/iminuit-2.30.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9942bd5ff2a479ec98bada8fc3020c5067d9ef933a4d269807e0e575608f2c7",
                "md5": "739138d4889c37fe51edbff28fe515e0",
                "sha256": "8cf21f549fd47edc489e2d9abe01d1eb225d0117b6843fcdf8f93b3af85fe65d"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "739138d4889c37fe51edbff28fe515e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 405764,
            "upload_time": "2024-10-08T07:38:55",
            "upload_time_iso_8601": "2024-10-08T07:38:55.411293Z",
            "url": "https://files.pythonhosted.org/packages/e9/94/2bd5ff2a479ec98bada8fc3020c5067d9ef933a4d269807e0e575608f2c7/iminuit-2.30.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50f6db504b0cea7b43c44a6fc11772acc6cf50bf14a2714a62787bb7f3063ed6",
                "md5": "f62b11f77684929332f73e655df5221e",
                "sha256": "7e678ab7d58accf42b26647034b6c4229adfeb7a5d4d83b9edec8b4769c318e4"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f62b11f77684929332f73e655df5221e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1329043,
            "upload_time": "2024-10-08T07:38:56",
            "upload_time_iso_8601": "2024-10-08T07:38:56.847333Z",
            "url": "https://files.pythonhosted.org/packages/50/f6/db504b0cea7b43c44a6fc11772acc6cf50bf14a2714a62787bb7f3063ed6/iminuit-2.30.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "44c5b57fdc3447fafb83e645e659c4260088b29cf9b4d8817957cea3f55490bf",
                "md5": "b34b47e706ceaf075fcbe688f9597899",
                "sha256": "16054de04bd17fa6207fa8012d49be66b50073c3bc75fcd2b5c1e2c33776d37d"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b34b47e706ceaf075fcbe688f9597899",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 1401444,
            "upload_time": "2024-10-08T07:38:59",
            "upload_time_iso_8601": "2024-10-08T07:38:59.199994Z",
            "url": "https://files.pythonhosted.org/packages/44/c5/b57fdc3447fafb83e645e659c4260088b29cf9b4d8817957cea3f55490bf/iminuit-2.30.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef31864527623424b7edc6bf65c08e624bee536c582baa0eeb07f2ba303f606a",
                "md5": "2d7ddbe099b280c436ddf23b0e6f4c47",
                "sha256": "34e36d67650e69924458e7a9b323b43ae7a873a1c3a5fcda38a7ad3eb58ca95c"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "2d7ddbe099b280c436ddf23b0e6f4c47",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 321635,
            "upload_time": "2024-10-08T07:39:01",
            "upload_time_iso_8601": "2024-10-08T07:39:01.488434Z",
            "url": "https://files.pythonhosted.org/packages/ef/31/864527623424b7edc6bf65c08e624bee536c582baa0eeb07f2ba303f606a/iminuit-2.30.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93f8461f3522f43016929a46007c42f2c097b8b5e9fb1f40ecbf46cbea6abba7",
                "md5": "3f1a22991692a682f2296b5a48abcc84",
                "sha256": "d34ecde9f853e769c4fb3ac061440af8de738d7a1ca1cf0857fc3fcc27506150"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3f1a22991692a682f2296b5a48abcc84",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 367751,
            "upload_time": "2024-10-08T07:39:02",
            "upload_time_iso_8601": "2024-10-08T07:39:02.870805Z",
            "url": "https://files.pythonhosted.org/packages/93/f8/461f3522f43016929a46007c42f2c097b8b5e9fb1f40ecbf46cbea6abba7/iminuit-2.30.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c2f885810178ce831150059e658394afb8d5256ee13713308221dd48c003682",
                "md5": "98f876af68648253aad51ac7d666fa59",
                "sha256": "2815bfdeb8e7f78185f316b75e2d4b19d0f6993bdc5ff03352ed37b70a796360"
            },
            "downloads": -1,
            "filename": "iminuit-2.30.1.tar.gz",
            "has_sig": false,
            "md5_digest": "98f876af68648253aad51ac7d666fa59",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 1835277,
            "upload_time": "2024-10-08T07:39:04",
            "upload_time_iso_8601": "2024-10-08T07:39:04.977936Z",
            "url": "https://files.pythonhosted.org/packages/9c/2f/885810178ce831150059e658394afb8d5256ee13713308221dd48c003682/iminuit-2.30.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-08 07:39:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "scikit-hep",
    "github_project": "iminuit",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "iminuit"
}
        
Elapsed time: 0.89086s