frozenlist


Namefrozenlist JSON
Version 1.8.0 PyPI version JSON
download
home_pagehttps://github.com/aio-libs/frozenlist
SummaryA list-like structure which implements collections.abc.MutableSequence
upload_time2025-10-06 05:38:17
maintaineraiohttp team <team@aiohttp.org>
docs_urlNone
authorNone
requires_python>=3.9
licenseApache-2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            frozenlist
==========

.. image:: https://github.com/aio-libs/frozenlist/workflows/CI/badge.svg
   :target: https://github.com/aio-libs/frozenlist/actions
   :alt: GitHub status for master branch

.. image:: https://codecov.io/gh/aio-libs/frozenlist/branch/master/graph/badge.svg?flag=pytest
   :target: https://codecov.io/gh/aio-libs/frozenlist?flags[]=pytest
   :alt: codecov.io status for master branch

.. image:: https://img.shields.io/pypi/v/frozenlist.svg?logo=Python&logoColor=white
   :target: https://pypi.org/project/frozenlist
   :alt: frozenlist @ PyPI

.. image:: https://readthedocs.org/projects/frozenlist/badge/?version=latest
   :target: https://frozenlist.aio-libs.org
   :alt: Read The Docs build status badge

.. image:: https://img.shields.io/matrix/aio-libs:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat
   :target: https://matrix.to/#/%23aio-libs:matrix.org
   :alt: Matrix Room — #aio-libs:matrix.org

.. image:: https://img.shields.io/matrix/aio-libs-space:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs-space%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat
   :target: https://matrix.to/#/%23aio-libs-space:matrix.org
   :alt: Matrix Space — #aio-libs-space:matrix.org

Introduction
------------

``frozenlist.FrozenList`` is a list-like structure which implements
``collections.abc.MutableSequence``. The list is *mutable* until ``FrozenList.freeze``
is called, after which list modifications raise ``RuntimeError``:


>>> from frozenlist import FrozenList
>>> fl = FrozenList([17, 42])
>>> fl.append('spam')
>>> fl.append('Vikings')
>>> fl
<FrozenList(frozen=False, [17, 42, 'spam', 'Vikings'])>
>>> fl.freeze()
>>> fl
<FrozenList(frozen=True, [17, 42, 'spam', 'Vikings'])>
>>> fl.frozen
True
>>> fl.append("Monty")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "frozenlist/_frozenlist.pyx", line 97, in frozenlist._frozenlist.FrozenList.append
    self._check_frozen()
  File "frozenlist/_frozenlist.pyx", line 19, in frozenlist._frozenlist.FrozenList._check_frozen
    raise RuntimeError("Cannot modify frozen list.")
RuntimeError: Cannot modify frozen list.


FrozenList is also hashable, but only when frozen. Otherwise it also throws a RuntimeError:


>>> fl = FrozenList([17, 42, 'spam'])
>>> hash(fl)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "frozenlist/_frozenlist.pyx", line 111, in frozenlist._frozenlist.FrozenList.__hash__
    raise RuntimeError("Cannot hash unfrozen list.")
RuntimeError: Cannot hash unfrozen list.
>>> fl.freeze()
>>> hash(fl)
3713081631934410656
>>> dictionary = {fl: 'Vikings'} # frozen fl can be a dict key
>>> dictionary
{<FrozenList(frozen=True, [1, 2])>: 'Vikings'}


Installation
------------

::

   $ pip install frozenlist


Documentation
-------------

https://frozenlist.aio-libs.org

Communication channels
----------------------

We have a *Matrix Space* `#aio-libs-space:matrix.org
<https://matrix.to/#/%23aio-libs-space:matrix.org>`_ which is
also accessible via Gitter.

License
-------

``frozenlist`` is offered under the Apache 2 license.

Source code
-----------

The project is hosted on GitHub_

Please file an issue in the `bug tracker
<https://github.com/aio-libs/frozenlist/issues>`_ if you have found a bug
or have some suggestions to improve the library.

.. _GitHub: https://github.com/aio-libs/frozenlist

=========
Changelog
=========

..
    You should *NOT* be adding new change log entries to this file, this
    file is managed by towncrier. You *may* edit previous change logs to
    fix problems like typo corrections or such.
    To add a new change log entry, please see
    https://pip.pypa.io/en/latest/development/contributing/#news-entries
    we named the news folder "changes".

    WARNING: Don't drop the next directive!

.. towncrier release notes start

v1.8.0
======

*(2025-10-05)*


Contributor-facing changes
--------------------------

- The ``reusable-cibuildwheel.yml`` workflow has been refactored to
  be more generic and ``ci-cd.yml`` now holds all the configuration
  toggles -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.

  *Related issues and pull requests on GitHub:*
  `#668 <https://github.com/aio-libs/frozenlist/issues/668>`__.

- When building wheels, the source distribution is now passed directly
  to the ``cibuildwheel`` invocation -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.

  *Related issues and pull requests on GitHub:*
  `#669 <https://github.com/aio-libs/frozenlist/issues/669>`__.

- Builds and tests have been added to
  ``ci-cd.yml`` for arm64 Windows wheels -- by `@finnagin <https://github.com/sponsors/finnagin>`__.

  *Related issues and pull requests on GitHub:*
  `#677 <https://github.com/aio-libs/frozenlist/issues/677>`__.

- Started building wheels for CPython 3.14 -- by `@kumaraditya303 <https://github.com/sponsors/kumaraditya303>`__.

  *Related issues and pull requests on GitHub:*
  `#681 <https://github.com/aio-libs/frozenlist/issues/681>`__, `#682 <https://github.com/aio-libs/frozenlist/issues/682>`__.

- Removed ``--config-settings=pure-python=false`` from ``requirements/dev.txt``.
  Developers on CPython still get accelerated builds by default. To explicitly build
  a pure Python wheel, use ``pip install -e . --config-settings=pure-python=true``
  -- by `@bdraco <https://github.com/sponsors/bdraco>`__.

  *Related issues and pull requests on GitHub:*
  `#687 <https://github.com/aio-libs/frozenlist/issues/687>`__.


----


v1.7.0
======

*(2025-06-09)*


Features
--------

- Added deepcopy support to FrozenList -- by `@bdraco <https://github.com/sponsors/bdraco>`__.

  *Related issues and pull requests on GitHub:*
  `#659 <https://github.com/aio-libs/frozenlist/issues/659>`__.


Packaging updates and notes for downstreams
-------------------------------------------

- Fixed an issue where ``frozenlist`` binary wheels would be built with debugging symbols and line tracing enabled, which significantly impacted performance. Line tracing is now disabled by default and can only be enabled explicitly -- by `@bdraco <https://github.com/sponsors/bdraco>`__.

  This change ensures that production builds are optimized for performance. Developers who need line tracing for debugging purposes can still enable it by:

  1. Setting the ``FROZENLIST_CYTHON_TRACING`` environment variable
  2. Using the ``--config-setting=with-cython-tracing=true`` option with pip

  *Related issues and pull requests on GitHub:*
  `#660 <https://github.com/aio-libs/frozenlist/issues/660>`__.

- Enabled ``PIP_CONSTRAINT`` environment variable in the build configuration to ensure the pinned Cython version from ``requirements/cython.txt`` is used during wheel builds.

  *Related issues and pull requests on GitHub:*
  `#661 <https://github.com/aio-libs/frozenlist/issues/661>`__.


----


v1.6.2
======

*(2025-06-03)*


No significant changes.


----


v1.6.1
======

*(2025-06-02)*


Bug fixes
---------

- Correctly use ``cimport`` for including ``PyBool_FromLong`` -- by `@lysnikolaou <https://github.com/sponsors/lysnikolaou>`__.

  *Related issues and pull requests on GitHub:*
  `#653 <https://github.com/aio-libs/frozenlist/issues/653>`__.


Packaging updates and notes for downstreams
-------------------------------------------

- Exclude ``_frozenlist.cpp`` from bdists/wheels -- by `@musicinmybrain <https://github.com/sponsors/musicinmybrain>`__.

  *Related issues and pull requests on GitHub:*
  `#649 <https://github.com/aio-libs/frozenlist/issues/649>`__.

- Updated to use Cython 3.1 universally across the build path -- by `@lysnikolaou <https://github.com/sponsors/lysnikolaou>`__.

  *Related issues and pull requests on GitHub:*
  `#654 <https://github.com/aio-libs/frozenlist/issues/654>`__.


----


v1.6.0
======

*(2025-04-17)*


Bug fixes
---------

- Stopped implicitly allowing the use of Cython pre-release versions when
  building the distribution package -- by `@ajsanchezsanz <https://github.com/sponsors/ajsanchezsanz>`__ and
  `@markgreene74 <https://github.com/sponsors/markgreene74>`__.

  *Related commits on GitHub:*
  `41591f2 <https://github.com/aio-libs/frozenlist/commit/41591f2>`__.


Features
--------

- Implemented support for the free-threaded build of CPython 3.13 -- by `@lysnikolaou <https://github.com/sponsors/lysnikolaou>`__.

  *Related issues and pull requests on GitHub:*
  `#618 <https://github.com/aio-libs/frozenlist/issues/618>`__.

- Started building armv7l wheels -- by `@bdraco <https://github.com/sponsors/bdraco>`__.

  *Related issues and pull requests on GitHub:*
  `#642 <https://github.com/aio-libs/frozenlist/issues/642>`__.


Packaging updates and notes for downstreams
-------------------------------------------

- Stopped implicitly allowing the use of Cython pre-release versions when
  building the distribution package -- by `@ajsanchezsanz <https://github.com/sponsors/ajsanchezsanz>`__ and
  `@markgreene74 <https://github.com/sponsors/markgreene74>`__.

  *Related commits on GitHub:*
  `41591f2 <https://github.com/aio-libs/frozenlist/commit/41591f2>`__.

- Started building wheels for the free-threaded build of CPython 3.13 -- by `@lysnikolaou <https://github.com/sponsors/lysnikolaou>`__.

  *Related issues and pull requests on GitHub:*
  `#618 <https://github.com/aio-libs/frozenlist/issues/618>`__.

- The packaging metadata switched to including an SPDX license identifier introduced in `PEP 639 <https://peps.python.org/pep-639>`__ -- by `@cdce8p <https://github.com/sponsors/cdce8p>`__.

  *Related issues and pull requests on GitHub:*
  `#639 <https://github.com/aio-libs/frozenlist/issues/639>`__.


Contributor-facing changes
--------------------------

- GitHub Actions CI/CD is now configured to manage caching pip-ecosystem
  dependencies using `re-actors/cache-python-deps`_ -- an action by
  `@webknjaz <https://github.com/sponsors/webknjaz>`__ that takes into account ABI stability and the exact
  version of Python runtime.

  .. _`re-actors/cache-python-deps`:
     https://github.com/marketplace/actions/cache-python-deps

  *Related issues and pull requests on GitHub:*
  `#633 <https://github.com/aio-libs/frozenlist/issues/633>`__.

- Organized dependencies into test and lint dependencies so that no
  unnecessary ones are installed during CI runs -- by `@lysnikolaou <https://github.com/sponsors/lysnikolaou>`__.

  *Related issues and pull requests on GitHub:*
  `#636 <https://github.com/aio-libs/frozenlist/issues/636>`__.


----


1.5.0 (2024-10-22)
==================

Bug fixes
---------

- An incorrect signature of the ``__class_getitem__`` class method
  has been fixed, adding a missing ``class_item`` argument under
  Python 3.8 and older.

  This change also improves the code coverage of this method that
  was previously missing -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.


  *Related issues and pull requests on GitHub:*
  `#567 <https://github.com/aio-libs/frozenlist/issues/567>`__, `#571 <https://github.com/aio-libs/frozenlist/issues/571>`__.


Improved documentation
----------------------

- Rendered issue, PR, and commit links now lead to
  ``frozenlist``'s repo instead of ``yarl``'s repo.


  *Related issues and pull requests on GitHub:*
  `#573 <https://github.com/aio-libs/frozenlist/issues/573>`__.

- On the ``Contributing docs`` page,
  a link to the ``Towncrier philosophy`` has been fixed.


  *Related issues and pull requests on GitHub:*
  `#574 <https://github.com/aio-libs/frozenlist/issues/574>`__.


Packaging updates and notes for downstreams
-------------------------------------------

- A name of a temporary building directory now reflects
  that it's related to ``frozenlist``, not ``yarl``.


  *Related issues and pull requests on GitHub:*
  `#573 <https://github.com/aio-libs/frozenlist/issues/573>`__.

- Declared Python 3.13 supported officially in the distribution package metadata.


  *Related issues and pull requests on GitHub:*
  `#595 <https://github.com/aio-libs/frozenlist/issues/595>`__.


----


1.4.1 (2023-12-15)
==================

Packaging updates and notes for downstreams
-------------------------------------------

- Declared Python 3.12 and PyPy 3.8-3.10 supported officially
  in the distribution package metadata.


  *Related issues and pull requests on GitHub:*
  `#553 <https://github.com/aio-libs/frozenlist/issues/553>`__.

- Replaced the packaging is replaced from an old-fashioned ``setup.py`` to an
  in-tree `PEP 517 <https://peps.python.org/pep-517>`__ build backend -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.

  Whenever the end-users or downstream packagers need to build ``frozenlist``
  from source (a Git checkout or an sdist), they may pass a ``config_settings``
  flag ``pure-python``. If this flag is not set, a C-extension will be built
  and included into the distribution.

  Here is how this can be done with ``pip``:

  .. code-block:: console

      $ python3 -m pip install . --config-settings=pure-python=

  This will also work with ``-e | --editable``.

  The same can be achieved via ``pypa/build``:

  .. code-block:: console

      $ python3 -m build --config-setting=pure-python=

  Adding ``-w | --wheel`` can force ``pypa/build`` produce a wheel from source
  directly, as opposed to building an ``sdist`` and then building from it.


  *Related issues and pull requests on GitHub:*
  `#560 <https://github.com/aio-libs/frozenlist/issues/560>`__.


Contributor-facing changes
--------------------------

- It is now possible to request line tracing in Cython builds using the
  ``with-cython-tracing`` `PEP 517 <https://peps.python.org/pep-517>`__ config setting
  -- `@webknjaz <https://github.com/sponsors/webknjaz>`__.

  This can be used in CI and development environment to measure coverage
  on Cython modules, but is not normally useful to the end-users or
  downstream packagers.

  Here's a usage example:

  .. code-block:: console

      $ python3 -Im pip install . --config-settings=with-cython-tracing=true

  For editable installs, this setting is on by default. Otherwise, it's
  off unless requested explicitly.

  The following produces C-files required for the Cython coverage
  plugin to map the measurements back to the PYX-files:

  .. code-block:: console

      $ python -Im pip install -e .

  Alternatively, the ``FROZENLIST_CYTHON_TRACING=1`` environment variable
  can be set to do the same as the `PEP 517 <https://peps.python.org/pep-517>`__ config setting.


  *Related issues and pull requests on GitHub:*
  `#560 <https://github.com/aio-libs/frozenlist/issues/560>`__.

- Coverage collection has been implemented for the Cython modules
  -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.

  It will also be reported to Codecov from any non-release CI jobs.


  *Related issues and pull requests on GitHub:*
  `#561 <https://github.com/aio-libs/frozenlist/issues/561>`__.

- A step-by-step ``Release Guide`` guide has
  been added, describing how to release *frozenlist* -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.

  This is primarily targeting the maintainers.


  *Related issues and pull requests on GitHub:*
  `#563 <https://github.com/aio-libs/frozenlist/issues/563>`__.

- Detailed ``Contributing Guidelines`` on
  authoring the changelog fragments have been published in the
  documentation -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.


  *Related issues and pull requests on GitHub:*
  `#564 <https://github.com/aio-libs/frozenlist/issues/564>`__.


----


1.4.0 (2023-07-12)
==================

The published source distribution package became buildable
under Python 3.12.


----


Bugfixes
--------

- Removed an unused ``typing.Tuple`` import
  `#411 <https://github.com/aio-libs/frozenlist/issues/411>`_


Deprecations and Removals
-------------------------

- Dropped Python 3.7 support.
  `#413 <https://github.com/aio-libs/frozenlist/issues/413>`_


Misc
----

- `#410 <https://github.com/aio-libs/frozenlist/issues/410>`_, `#433 <https://github.com/aio-libs/frozenlist/issues/433>`_


----


1.3.3 (2022-11-08)
==================

- Fixed CI runs when creating a new release, where new towncrier versions
  fail when the current version section is already present.


----


1.3.2 (2022-11-08)
==================

Misc
----

- Updated the CI runs to better check for test results and to avoid deprecated syntax. `#327 <https://github.com/aio-libs/frozenlist/issues/327>`_


----


1.3.1 (2022-08-02)
==================

The published source distribution package became buildable
under Python 3.11.


----


1.3.0 (2022-01-18)
==================

Bugfixes
--------

- Do not install C sources with binary distributions.
  `#250 <https://github.com/aio-libs/frozenlist/issues/250>`_


Deprecations and Removals
-------------------------

- Dropped Python 3.6 support
  `#274 <https://github.com/aio-libs/frozenlist/issues/274>`_


----


1.2.0 (2021-10-16)
==================

Features
--------

- ``FrozenList`` now supports being used as a generic type as per PEP 585, e.g. ``frozen_int_list: FrozenList[int]`` (requires Python 3.9 or newer).
  `#172 <https://github.com/aio-libs/frozenlist/issues/172>`_
- Added support for Python 3.10.
  `#227 <https://github.com/aio-libs/frozenlist/issues/227>`_
- Started shipping platform-specific wheels with the ``musl`` tag targeting typical Alpine Linux runtimes.
  `#227 <https://github.com/aio-libs/frozenlist/issues/227>`_
- Started shipping platform-specific arm64 wheels for Apple Silicon.
  `#227 <https://github.com/aio-libs/frozenlist/issues/227>`_


----


1.1.1 (2020-11-14)
==================

Bugfixes
--------

- Provide x86 Windows wheels.
  `#169 <https://github.com/aio-libs/frozenlist/issues/169>`_


----


1.1.0 (2020-10-13)
==================

Features
--------

- Add support for hashing of a frozen list.
  `#136 <https://github.com/aio-libs/frozenlist/issues/136>`_

- Support Python 3.8 and 3.9.

- Provide wheels for ``aarch64``, ``i686``, ``ppc64le``, ``s390x`` architectures on
  Linux as well as ``x86_64``.


----


1.0.0 (2019-11-09)
==================

Deprecations and Removals
-------------------------

- Dropped support for Python 3.5; only 3.6, 3.7 and 3.8 are supported going forward.
  `#24 <https://github.com/aio-libs/frozenlist/issues/24>`_

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/aio-libs/frozenlist",
    "name": "frozenlist",
    "maintainer": "aiohttp team <team@aiohttp.org>",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "team@aiohttp.org",
    "keywords": null,
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/2d/f5/c831fac6cc817d26fd54c7eaccd04ef7e0288806943f7cc5bbf69f3ac1f0/frozenlist-1.8.0.tar.gz",
    "platform": null,
    "description": "frozenlist\n==========\n\n.. image:: https://github.com/aio-libs/frozenlist/workflows/CI/badge.svg\n   :target: https://github.com/aio-libs/frozenlist/actions\n   :alt: GitHub status for master branch\n\n.. image:: https://codecov.io/gh/aio-libs/frozenlist/branch/master/graph/badge.svg?flag=pytest\n   :target: https://codecov.io/gh/aio-libs/frozenlist?flags[]=pytest\n   :alt: codecov.io status for master branch\n\n.. image:: https://img.shields.io/pypi/v/frozenlist.svg?logo=Python&logoColor=white\n   :target: https://pypi.org/project/frozenlist\n   :alt: frozenlist @ PyPI\n\n.. image:: https://readthedocs.org/projects/frozenlist/badge/?version=latest\n   :target: https://frozenlist.aio-libs.org\n   :alt: Read The Docs build status badge\n\n.. image:: https://img.shields.io/matrix/aio-libs:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat\n   :target: https://matrix.to/#/%23aio-libs:matrix.org\n   :alt: Matrix Room \u2014 #aio-libs:matrix.org\n\n.. image:: https://img.shields.io/matrix/aio-libs-space:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs-space%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat\n   :target: https://matrix.to/#/%23aio-libs-space:matrix.org\n   :alt: Matrix Space \u2014 #aio-libs-space:matrix.org\n\nIntroduction\n------------\n\n``frozenlist.FrozenList`` is a list-like structure which implements\n``collections.abc.MutableSequence``. The list is *mutable* until ``FrozenList.freeze``\nis called, after which list modifications raise ``RuntimeError``:\n\n\n>>> from frozenlist import FrozenList\n>>> fl = FrozenList([17, 42])\n>>> fl.append('spam')\n>>> fl.append('Vikings')\n>>> fl\n<FrozenList(frozen=False, [17, 42, 'spam', 'Vikings'])>\n>>> fl.freeze()\n>>> fl\n<FrozenList(frozen=True, [17, 42, 'spam', 'Vikings'])>\n>>> fl.frozen\nTrue\n>>> fl.append(\"Monty\")\nTraceback (most recent call last):\n  File \"<stdin>\", line 1, in <module>\n  File \"frozenlist/_frozenlist.pyx\", line 97, in frozenlist._frozenlist.FrozenList.append\n    self._check_frozen()\n  File \"frozenlist/_frozenlist.pyx\", line 19, in frozenlist._frozenlist.FrozenList._check_frozen\n    raise RuntimeError(\"Cannot modify frozen list.\")\nRuntimeError: Cannot modify frozen list.\n\n\nFrozenList is also hashable, but only when frozen. Otherwise it also throws a RuntimeError:\n\n\n>>> fl = FrozenList([17, 42, 'spam'])\n>>> hash(fl)\nTraceback (most recent call last):\n  File \"<stdin>\", line 1, in <module>\n  File \"frozenlist/_frozenlist.pyx\", line 111, in frozenlist._frozenlist.FrozenList.__hash__\n    raise RuntimeError(\"Cannot hash unfrozen list.\")\nRuntimeError: Cannot hash unfrozen list.\n>>> fl.freeze()\n>>> hash(fl)\n3713081631934410656\n>>> dictionary = {fl: 'Vikings'} # frozen fl can be a dict key\n>>> dictionary\n{<FrozenList(frozen=True, [1, 2])>: 'Vikings'}\n\n\nInstallation\n------------\n\n::\n\n   $ pip install frozenlist\n\n\nDocumentation\n-------------\n\nhttps://frozenlist.aio-libs.org\n\nCommunication channels\n----------------------\n\nWe have a *Matrix Space* `#aio-libs-space:matrix.org\n<https://matrix.to/#/%23aio-libs-space:matrix.org>`_ which is\nalso accessible via Gitter.\n\nLicense\n-------\n\n``frozenlist`` is offered under the Apache 2 license.\n\nSource code\n-----------\n\nThe project is hosted on GitHub_\n\nPlease file an issue in the `bug tracker\n<https://github.com/aio-libs/frozenlist/issues>`_ if you have found a bug\nor have some suggestions to improve the library.\n\n.. _GitHub: https://github.com/aio-libs/frozenlist\n\n=========\nChangelog\n=========\n\n..\n    You should *NOT* be adding new change log entries to this file, this\n    file is managed by towncrier. You *may* edit previous change logs to\n    fix problems like typo corrections or such.\n    To add a new change log entry, please see\n    https://pip.pypa.io/en/latest/development/contributing/#news-entries\n    we named the news folder \"changes\".\n\n    WARNING: Don't drop the next directive!\n\n.. towncrier release notes start\n\nv1.8.0\n======\n\n*(2025-10-05)*\n\n\nContributor-facing changes\n--------------------------\n\n- The ``reusable-cibuildwheel.yml`` workflow has been refactored to\n  be more generic and ``ci-cd.yml`` now holds all the configuration\n  toggles -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.\n\n  *Related issues and pull requests on GitHub:*\n  `#668 <https://github.com/aio-libs/frozenlist/issues/668>`__.\n\n- When building wheels, the source distribution is now passed directly\n  to the ``cibuildwheel`` invocation -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.\n\n  *Related issues and pull requests on GitHub:*\n  `#669 <https://github.com/aio-libs/frozenlist/issues/669>`__.\n\n- Builds and tests have been added to\n  ``ci-cd.yml`` for arm64 Windows wheels -- by `@finnagin <https://github.com/sponsors/finnagin>`__.\n\n  *Related issues and pull requests on GitHub:*\n  `#677 <https://github.com/aio-libs/frozenlist/issues/677>`__.\n\n- Started building wheels for CPython 3.14 -- by `@kumaraditya303 <https://github.com/sponsors/kumaraditya303>`__.\n\n  *Related issues and pull requests on GitHub:*\n  `#681 <https://github.com/aio-libs/frozenlist/issues/681>`__, `#682 <https://github.com/aio-libs/frozenlist/issues/682>`__.\n\n- Removed ``--config-settings=pure-python=false`` from ``requirements/dev.txt``.\n  Developers on CPython still get accelerated builds by default. To explicitly build\n  a pure Python wheel, use ``pip install -e . --config-settings=pure-python=true``\n  -- by `@bdraco <https://github.com/sponsors/bdraco>`__.\n\n  *Related issues and pull requests on GitHub:*\n  `#687 <https://github.com/aio-libs/frozenlist/issues/687>`__.\n\n\n----\n\n\nv1.7.0\n======\n\n*(2025-06-09)*\n\n\nFeatures\n--------\n\n- Added deepcopy support to FrozenList -- by `@bdraco <https://github.com/sponsors/bdraco>`__.\n\n  *Related issues and pull requests on GitHub:*\n  `#659 <https://github.com/aio-libs/frozenlist/issues/659>`__.\n\n\nPackaging updates and notes for downstreams\n-------------------------------------------\n\n- Fixed an issue where ``frozenlist`` binary wheels would be built with debugging symbols and line tracing enabled, which significantly impacted performance. Line tracing is now disabled by default and can only be enabled explicitly -- by `@bdraco <https://github.com/sponsors/bdraco>`__.\n\n  This change ensures that production builds are optimized for performance. Developers who need line tracing for debugging purposes can still enable it by:\n\n  1. Setting the ``FROZENLIST_CYTHON_TRACING`` environment variable\n  2. Using the ``--config-setting=with-cython-tracing=true`` option with pip\n\n  *Related issues and pull requests on GitHub:*\n  `#660 <https://github.com/aio-libs/frozenlist/issues/660>`__.\n\n- Enabled ``PIP_CONSTRAINT`` environment variable in the build configuration to ensure the pinned Cython version from ``requirements/cython.txt`` is used during wheel builds.\n\n  *Related issues and pull requests on GitHub:*\n  `#661 <https://github.com/aio-libs/frozenlist/issues/661>`__.\n\n\n----\n\n\nv1.6.2\n======\n\n*(2025-06-03)*\n\n\nNo significant changes.\n\n\n----\n\n\nv1.6.1\n======\n\n*(2025-06-02)*\n\n\nBug fixes\n---------\n\n- Correctly use ``cimport`` for including ``PyBool_FromLong`` -- by `@lysnikolaou <https://github.com/sponsors/lysnikolaou>`__.\n\n  *Related issues and pull requests on GitHub:*\n  `#653 <https://github.com/aio-libs/frozenlist/issues/653>`__.\n\n\nPackaging updates and notes for downstreams\n-------------------------------------------\n\n- Exclude ``_frozenlist.cpp`` from bdists/wheels -- by `@musicinmybrain <https://github.com/sponsors/musicinmybrain>`__.\n\n  *Related issues and pull requests on GitHub:*\n  `#649 <https://github.com/aio-libs/frozenlist/issues/649>`__.\n\n- Updated to use Cython 3.1 universally across the build path -- by `@lysnikolaou <https://github.com/sponsors/lysnikolaou>`__.\n\n  *Related issues and pull requests on GitHub:*\n  `#654 <https://github.com/aio-libs/frozenlist/issues/654>`__.\n\n\n----\n\n\nv1.6.0\n======\n\n*(2025-04-17)*\n\n\nBug fixes\n---------\n\n- Stopped implicitly allowing the use of Cython pre-release versions when\n  building the distribution package -- by `@ajsanchezsanz <https://github.com/sponsors/ajsanchezsanz>`__ and\n  `@markgreene74 <https://github.com/sponsors/markgreene74>`__.\n\n  *Related commits on GitHub:*\n  `41591f2 <https://github.com/aio-libs/frozenlist/commit/41591f2>`__.\n\n\nFeatures\n--------\n\n- Implemented support for the free-threaded build of CPython 3.13 -- by `@lysnikolaou <https://github.com/sponsors/lysnikolaou>`__.\n\n  *Related issues and pull requests on GitHub:*\n  `#618 <https://github.com/aio-libs/frozenlist/issues/618>`__.\n\n- Started building armv7l wheels -- by `@bdraco <https://github.com/sponsors/bdraco>`__.\n\n  *Related issues and pull requests on GitHub:*\n  `#642 <https://github.com/aio-libs/frozenlist/issues/642>`__.\n\n\nPackaging updates and notes for downstreams\n-------------------------------------------\n\n- Stopped implicitly allowing the use of Cython pre-release versions when\n  building the distribution package -- by `@ajsanchezsanz <https://github.com/sponsors/ajsanchezsanz>`__ and\n  `@markgreene74 <https://github.com/sponsors/markgreene74>`__.\n\n  *Related commits on GitHub:*\n  `41591f2 <https://github.com/aio-libs/frozenlist/commit/41591f2>`__.\n\n- Started building wheels for the free-threaded build of CPython 3.13 -- by `@lysnikolaou <https://github.com/sponsors/lysnikolaou>`__.\n\n  *Related issues and pull requests on GitHub:*\n  `#618 <https://github.com/aio-libs/frozenlist/issues/618>`__.\n\n- The packaging metadata switched to including an SPDX license identifier introduced in `PEP 639 <https://peps.python.org/pep-639>`__ -- by `@cdce8p <https://github.com/sponsors/cdce8p>`__.\n\n  *Related issues and pull requests on GitHub:*\n  `#639 <https://github.com/aio-libs/frozenlist/issues/639>`__.\n\n\nContributor-facing changes\n--------------------------\n\n- GitHub Actions CI/CD is now configured to manage caching pip-ecosystem\n  dependencies using `re-actors/cache-python-deps`_ -- an action by\n  `@webknjaz <https://github.com/sponsors/webknjaz>`__ that takes into account ABI stability and the exact\n  version of Python runtime.\n\n  .. _`re-actors/cache-python-deps`:\n     https://github.com/marketplace/actions/cache-python-deps\n\n  *Related issues and pull requests on GitHub:*\n  `#633 <https://github.com/aio-libs/frozenlist/issues/633>`__.\n\n- Organized dependencies into test and lint dependencies so that no\n  unnecessary ones are installed during CI runs -- by `@lysnikolaou <https://github.com/sponsors/lysnikolaou>`__.\n\n  *Related issues and pull requests on GitHub:*\n  `#636 <https://github.com/aio-libs/frozenlist/issues/636>`__.\n\n\n----\n\n\n1.5.0 (2024-10-22)\n==================\n\nBug fixes\n---------\n\n- An incorrect signature of the ``__class_getitem__`` class method\n  has been fixed, adding a missing ``class_item`` argument under\n  Python 3.8 and older.\n\n  This change also improves the code coverage of this method that\n  was previously missing -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.\n\n\n  *Related issues and pull requests on GitHub:*\n  `#567 <https://github.com/aio-libs/frozenlist/issues/567>`__, `#571 <https://github.com/aio-libs/frozenlist/issues/571>`__.\n\n\nImproved documentation\n----------------------\n\n- Rendered issue, PR, and commit links now lead to\n  ``frozenlist``'s repo instead of ``yarl``'s repo.\n\n\n  *Related issues and pull requests on GitHub:*\n  `#573 <https://github.com/aio-libs/frozenlist/issues/573>`__.\n\n- On the ``Contributing docs`` page,\n  a link to the ``Towncrier philosophy`` has been fixed.\n\n\n  *Related issues and pull requests on GitHub:*\n  `#574 <https://github.com/aio-libs/frozenlist/issues/574>`__.\n\n\nPackaging updates and notes for downstreams\n-------------------------------------------\n\n- A name of a temporary building directory now reflects\n  that it's related to ``frozenlist``, not ``yarl``.\n\n\n  *Related issues and pull requests on GitHub:*\n  `#573 <https://github.com/aio-libs/frozenlist/issues/573>`__.\n\n- Declared Python 3.13 supported officially in the distribution package metadata.\n\n\n  *Related issues and pull requests on GitHub:*\n  `#595 <https://github.com/aio-libs/frozenlist/issues/595>`__.\n\n\n----\n\n\n1.4.1 (2023-12-15)\n==================\n\nPackaging updates and notes for downstreams\n-------------------------------------------\n\n- Declared Python 3.12 and PyPy 3.8-3.10 supported officially\n  in the distribution package metadata.\n\n\n  *Related issues and pull requests on GitHub:*\n  `#553 <https://github.com/aio-libs/frozenlist/issues/553>`__.\n\n- Replaced the packaging is replaced from an old-fashioned ``setup.py`` to an\n  in-tree `PEP 517 <https://peps.python.org/pep-517>`__ build backend -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.\n\n  Whenever the end-users or downstream packagers need to build ``frozenlist``\n  from source (a Git checkout or an sdist), they may pass a ``config_settings``\n  flag ``pure-python``. If this flag is not set, a C-extension will be built\n  and included into the distribution.\n\n  Here is how this can be done with ``pip``:\n\n  .. code-block:: console\n\n      $ python3 -m pip install . --config-settings=pure-python=\n\n  This will also work with ``-e | --editable``.\n\n  The same can be achieved via ``pypa/build``:\n\n  .. code-block:: console\n\n      $ python3 -m build --config-setting=pure-python=\n\n  Adding ``-w | --wheel`` can force ``pypa/build`` produce a wheel from source\n  directly, as opposed to building an ``sdist`` and then building from it.\n\n\n  *Related issues and pull requests on GitHub:*\n  `#560 <https://github.com/aio-libs/frozenlist/issues/560>`__.\n\n\nContributor-facing changes\n--------------------------\n\n- It is now possible to request line tracing in Cython builds using the\n  ``with-cython-tracing`` `PEP 517 <https://peps.python.org/pep-517>`__ config setting\n  -- `@webknjaz <https://github.com/sponsors/webknjaz>`__.\n\n  This can be used in CI and development environment to measure coverage\n  on Cython modules, but is not normally useful to the end-users or\n  downstream packagers.\n\n  Here's a usage example:\n\n  .. code-block:: console\n\n      $ python3 -Im pip install . --config-settings=with-cython-tracing=true\n\n  For editable installs, this setting is on by default. Otherwise, it's\n  off unless requested explicitly.\n\n  The following produces C-files required for the Cython coverage\n  plugin to map the measurements back to the PYX-files:\n\n  .. code-block:: console\n\n      $ python -Im pip install -e .\n\n  Alternatively, the ``FROZENLIST_CYTHON_TRACING=1`` environment variable\n  can be set to do the same as the `PEP 517 <https://peps.python.org/pep-517>`__ config setting.\n\n\n  *Related issues and pull requests on GitHub:*\n  `#560 <https://github.com/aio-libs/frozenlist/issues/560>`__.\n\n- Coverage collection has been implemented for the Cython modules\n  -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.\n\n  It will also be reported to Codecov from any non-release CI jobs.\n\n\n  *Related issues and pull requests on GitHub:*\n  `#561 <https://github.com/aio-libs/frozenlist/issues/561>`__.\n\n- A step-by-step ``Release Guide`` guide has\n  been added, describing how to release *frozenlist* -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.\n\n  This is primarily targeting the maintainers.\n\n\n  *Related issues and pull requests on GitHub:*\n  `#563 <https://github.com/aio-libs/frozenlist/issues/563>`__.\n\n- Detailed ``Contributing Guidelines`` on\n  authoring the changelog fragments have been published in the\n  documentation -- by `@webknjaz <https://github.com/sponsors/webknjaz>`__.\n\n\n  *Related issues and pull requests on GitHub:*\n  `#564 <https://github.com/aio-libs/frozenlist/issues/564>`__.\n\n\n----\n\n\n1.4.0 (2023-07-12)\n==================\n\nThe published source distribution package became buildable\nunder Python 3.12.\n\n\n----\n\n\nBugfixes\n--------\n\n- Removed an unused ``typing.Tuple`` import\n  `#411 <https://github.com/aio-libs/frozenlist/issues/411>`_\n\n\nDeprecations and Removals\n-------------------------\n\n- Dropped Python 3.7 support.\n  `#413 <https://github.com/aio-libs/frozenlist/issues/413>`_\n\n\nMisc\n----\n\n- `#410 <https://github.com/aio-libs/frozenlist/issues/410>`_, `#433 <https://github.com/aio-libs/frozenlist/issues/433>`_\n\n\n----\n\n\n1.3.3 (2022-11-08)\n==================\n\n- Fixed CI runs when creating a new release, where new towncrier versions\n  fail when the current version section is already present.\n\n\n----\n\n\n1.3.2 (2022-11-08)\n==================\n\nMisc\n----\n\n- Updated the CI runs to better check for test results and to avoid deprecated syntax. `#327 <https://github.com/aio-libs/frozenlist/issues/327>`_\n\n\n----\n\n\n1.3.1 (2022-08-02)\n==================\n\nThe published source distribution package became buildable\nunder Python 3.11.\n\n\n----\n\n\n1.3.0 (2022-01-18)\n==================\n\nBugfixes\n--------\n\n- Do not install C sources with binary distributions.\n  `#250 <https://github.com/aio-libs/frozenlist/issues/250>`_\n\n\nDeprecations and Removals\n-------------------------\n\n- Dropped Python 3.6 support\n  `#274 <https://github.com/aio-libs/frozenlist/issues/274>`_\n\n\n----\n\n\n1.2.0 (2021-10-16)\n==================\n\nFeatures\n--------\n\n- ``FrozenList`` now supports being used as a generic type as per PEP 585, e.g. ``frozen_int_list: FrozenList[int]`` (requires Python 3.9 or newer).\n  `#172 <https://github.com/aio-libs/frozenlist/issues/172>`_\n- Added support for Python 3.10.\n  `#227 <https://github.com/aio-libs/frozenlist/issues/227>`_\n- Started shipping platform-specific wheels with the ``musl`` tag targeting typical Alpine Linux runtimes.\n  `#227 <https://github.com/aio-libs/frozenlist/issues/227>`_\n- Started shipping platform-specific arm64 wheels for Apple Silicon.\n  `#227 <https://github.com/aio-libs/frozenlist/issues/227>`_\n\n\n----\n\n\n1.1.1 (2020-11-14)\n==================\n\nBugfixes\n--------\n\n- Provide x86 Windows wheels.\n  `#169 <https://github.com/aio-libs/frozenlist/issues/169>`_\n\n\n----\n\n\n1.1.0 (2020-10-13)\n==================\n\nFeatures\n--------\n\n- Add support for hashing of a frozen list.\n  `#136 <https://github.com/aio-libs/frozenlist/issues/136>`_\n\n- Support Python 3.8 and 3.9.\n\n- Provide wheels for ``aarch64``, ``i686``, ``ppc64le``, ``s390x`` architectures on\n  Linux as well as ``x86_64``.\n\n\n----\n\n\n1.0.0 (2019-11-09)\n==================\n\nDeprecations and Removals\n-------------------------\n\n- Dropped support for Python 3.5; only 3.6, 3.7 and 3.8 are supported going forward.\n  `#24 <https://github.com/aio-libs/frozenlist/issues/24>`_\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "A list-like structure which implements collections.abc.MutableSequence",
    "version": "1.8.0",
    "project_urls": {
        "CI: Github Actions": "https://github.com/aio-libs/frozenlist/actions",
        "Chat: Matrix": "https://matrix.to/#/#aio-libs:matrix.org",
        "Chat: Matrix Space": "https://matrix.to/#/#aio-libs-space:matrix.org",
        "Code of Conduct": "https://github.com/aio-libs/.github/blob/master/CODE_OF_CONDUCT.md",
        "Coverage: codecov": "https://codecov.io/github/aio-libs/frozenlist",
        "Docs: Changelog": "https://github.com/aio-libs/frozenlist/blob/master/CHANGES.rst#changelog",
        "Docs: RTD": "https://frozenlist.aio-libs.org",
        "GitHub: issues": "https://github.com/aio-libs/frozenlist/issues",
        "GitHub: repo": "https://github.com/aio-libs/frozenlist",
        "Homepage": "https://github.com/aio-libs/frozenlist"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "834a557715d5047da48d54e659203b9335be7bfaafda2c3f627b7c47e0b3aaf3",
                "md5": "7156c0edbeff7f64f71f7fda0391451d",
                "sha256": "b37f6d31b3dcea7deb5e9696e529a6aa4a898adc33db82da12e4c60a7c4d2011"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "7156c0edbeff7f64f71f7fda0391451d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 86230,
            "upload_time": "2025-10-06T05:35:23",
            "upload_time_iso_8601": "2025-10-06T05:35:23.699793Z",
            "url": "https://files.pythonhosted.org/packages/83/4a/557715d5047da48d54e659203b9335be7bfaafda2c3f627b7c47e0b3aaf3/frozenlist-1.8.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2fbc85f9fed3ea8fe8740e5b46a59cc141c23b842eca617da8876cfce5f760e",
                "md5": "f14cc64aa58966f6049978f390f5b36d",
                "sha256": "ef2b7b394f208233e471abc541cc6991f907ffd47dc72584acee3147899d6565"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f14cc64aa58966f6049978f390f5b36d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 49621,
            "upload_time": "2025-10-06T05:35:25",
            "upload_time_iso_8601": "2025-10-06T05:35:25.341666Z",
            "url": "https://files.pythonhosted.org/packages/a2/fb/c85f9fed3ea8fe8740e5b46a59cc141c23b842eca617da8876cfce5f760e/frozenlist-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "637026ca3f06aace16f2352796b08704338d74b6d1a24ca38f2771afbb7ed915",
                "md5": "1d70b17648426dfd4bc46172443fcb36",
                "sha256": "a88f062f072d1589b7b46e951698950e7da00442fc1cacbe17e19e025dc327ad"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1d70b17648426dfd4bc46172443fcb36",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 49889,
            "upload_time": "2025-10-06T05:35:26",
            "upload_time_iso_8601": "2025-10-06T05:35:26.797201Z",
            "url": "https://files.pythonhosted.org/packages/63/70/26ca3f06aace16f2352796b08704338d74b6d1a24ca38f2771afbb7ed915/frozenlist-1.8.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5dedc7895fd2fde7f3ee70d248175f9b6cdf792fb741ab92dc59cd9ef3bd241b",
                "md5": "d0d475e631d5c600d78caa86f668651f",
                "sha256": "f57fb59d9f385710aa7060e89410aeb5058b99e62f4d16b08b91986b9a2140c2"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d0d475e631d5c600d78caa86f668651f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 219464,
            "upload_time": "2025-10-06T05:35:28",
            "upload_time_iso_8601": "2025-10-06T05:35:28.254459Z",
            "url": "https://files.pythonhosted.org/packages/5d/ed/c7895fd2fde7f3ee70d248175f9b6cdf792fb741ab92dc59cd9ef3bd241b/frozenlist-1.8.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b834d587dccbfca74cb8b810472392ad62bfa100bf8108c7223eb4c4fa2f7b3",
                "md5": "acd9028368335bebd8f9d782a3118c73",
                "sha256": "799345ab092bee59f01a915620b5d014698547afd011e691a208637312db9186"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "acd9028368335bebd8f9d782a3118c73",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 221649,
            "upload_time": "2025-10-06T05:35:29",
            "upload_time_iso_8601": "2025-10-06T05:35:29.454357Z",
            "url": "https://files.pythonhosted.org/packages/6b/83/4d587dccbfca74cb8b810472392ad62bfa100bf8108c7223eb4c4fa2f7b3/frozenlist-1.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ac6fd3b9cd046ec5fff9dab66831083bc2077006a874a2d3d9247dea93ddf7e",
                "md5": "2876345d64c85a4dba53d8181e720c5c",
                "sha256": "c23c3ff005322a6e16f71bf8692fcf4d5a304aaafe1e262c98c6d4adc7be863e"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2876345d64c85a4dba53d8181e720c5c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 219188,
            "upload_time": "2025-10-06T05:35:30",
            "upload_time_iso_8601": "2025-10-06T05:35:30.951151Z",
            "url": "https://files.pythonhosted.org/packages/6a/c6/fd3b9cd046ec5fff9dab66831083bc2077006a874a2d3d9247dea93ddf7e/frozenlist-1.8.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce806693f55eb2e085fc8afb28cf611448fb5b90e98e068fa1d1b8d8e66e5c7d",
                "md5": "b2e9881c179b2b148a9fa9ae451fdd2a",
                "sha256": "8a76ea0f0b9dfa06f254ee06053d93a600865b3274358ca48a352ce4f0798450"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b2e9881c179b2b148a9fa9ae451fdd2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 231748,
            "upload_time": "2025-10-06T05:35:32",
            "upload_time_iso_8601": "2025-10-06T05:35:32.101032Z",
            "url": "https://files.pythonhosted.org/packages/ce/80/6693f55eb2e085fc8afb28cf611448fb5b90e98e068fa1d1b8d8e66e5c7d/frozenlist-1.8.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97d6e9459f7c5183854abd989ba384fe0cc1a0fb795a83c033f0571ec5933ca4",
                "md5": "efb3146da5f213275796d978cef43bbe",
                "sha256": "c7366fe1418a6133d5aa824ee53d406550110984de7637d65a178010f759c6ef"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "efb3146da5f213275796d978cef43bbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 236351,
            "upload_time": "2025-10-06T05:35:33",
            "upload_time_iso_8601": "2025-10-06T05:35:33.834228Z",
            "url": "https://files.pythonhosted.org/packages/97/d6/e9459f7c5183854abd989ba384fe0cc1a0fb795a83c033f0571ec5933ca4/frozenlist-1.8.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "979224e97474b65c0262e9ecd076e826bfd1d3074adcc165a256e42e7b8a7249",
                "md5": "ef84a81cfeff34e66a121837b13ee74d",
                "sha256": "13d23a45c4cebade99340c4165bd90eeb4a56c6d8a9d8aa49568cac19a6d0dc4"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ef84a81cfeff34e66a121837b13ee74d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 218767,
            "upload_time": "2025-10-06T05:35:35",
            "upload_time_iso_8601": "2025-10-06T05:35:35.205292Z",
            "url": "https://files.pythonhosted.org/packages/97/92/24e97474b65c0262e9ecd076e826bfd1d3074adcc165a256e42e7b8a7249/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eebfdc394a097508f15abff383c5108cb8ad880d1f64a725ed3b90d5c2fbf0bb",
                "md5": "c8f72e6f19bcffe0989059c96ca10eff",
                "sha256": "e4a3408834f65da56c83528fb52ce7911484f0d1eaf7b761fc66001db1646eff"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c8f72e6f19bcffe0989059c96ca10eff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 235887,
            "upload_time": "2025-10-06T05:35:36",
            "upload_time_iso_8601": "2025-10-06T05:35:36.354411Z",
            "url": "https://files.pythonhosted.org/packages/ee/bf/dc394a097508f15abff383c5108cb8ad880d1f64a725ed3b90d5c2fbf0bb/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "409025b201b9c015dbc999a5baf475a257010471a1fa8c200c843fd4abbee725",
                "md5": "79136718e14431593cf8f3c41c51825d",
                "sha256": "42145cd2748ca39f32801dad54aeea10039da6f86e303659db90db1c4b614c8c"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "79136718e14431593cf8f3c41c51825d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 228785,
            "upload_time": "2025-10-06T05:35:37",
            "upload_time_iso_8601": "2025-10-06T05:35:37.949759Z",
            "url": "https://files.pythonhosted.org/packages/40/90/25b201b9c015dbc999a5baf475a257010471a1fa8c200c843fd4abbee725/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "84f4b5bc148df03082f05d2dd30c089e269acdbe251ac9a9cf4e727b2dbb8a3d",
                "md5": "40bba03774912cb2046e8003aee5043e",
                "sha256": "e2de870d16a7a53901e41b64ffdf26f2fbb8917b3e6ebf398098d72c5b20bd7f"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp310-cp310-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "40bba03774912cb2046e8003aee5043e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 230312,
            "upload_time": "2025-10-06T05:35:39",
            "upload_time_iso_8601": "2025-10-06T05:35:39.178572Z",
            "url": "https://files.pythonhosted.org/packages/84/f4/b5bc148df03082f05d2dd30c089e269acdbe251ac9a9cf4e727b2dbb8a3d/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db4b87e95b5d15097c302430e647136b7d7ab2398a702390cf4c8601975709e7",
                "md5": "46f36b7cfc955be1c8426183667290c9",
                "sha256": "20e63c9493d33ee48536600d1a5c95eefc870cd71e7ab037763d1fbb89cc51e7"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46f36b7cfc955be1c8426183667290c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 217650,
            "upload_time": "2025-10-06T05:35:40",
            "upload_time_iso_8601": "2025-10-06T05:35:40.377202Z",
            "url": "https://files.pythonhosted.org/packages/db/4b/87e95b5d15097c302430e647136b7d7ab2398a702390cf4c8601975709e7/frozenlist-1.8.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e57078a0315d1fea97120591a83e0acd644da638c872f142fd72a6cebee825f3",
                "md5": "7afecdcf824286b32a7fb89d1c8b6623",
                "sha256": "adbeebaebae3526afc3c96fad434367cafbfd1b25d72369a9e5858453b1bb71a"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "7afecdcf824286b32a7fb89d1c8b6623",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 39659,
            "upload_time": "2025-10-06T05:35:41",
            "upload_time_iso_8601": "2025-10-06T05:35:41.863088Z",
            "url": "https://files.pythonhosted.org/packages/e5/70/78a0315d1fea97120591a83e0acd644da638c872f142fd72a6cebee825f3/frozenlist-1.8.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66aa3f04523fb189a00e147e60c5b2205126118f216b0aa908035c45336e27e4",
                "md5": "4b3210d9e9f3787e0a245fb017d1dd54",
                "sha256": "667c3777ca571e5dbeb76f331562ff98b957431df140b54c85fd4d52eea8d8f6"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4b3210d9e9f3787e0a245fb017d1dd54",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 43837,
            "upload_time": "2025-10-06T05:35:43",
            "upload_time_iso_8601": "2025-10-06T05:35:43.205720Z",
            "url": "https://files.pythonhosted.org/packages/66/aa/3f04523fb189a00e147e60c5b2205126118f216b0aa908035c45336e27e4/frozenlist-1.8.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39751135feecdd7c336938bd55b4dc3b0dfc46d85b9be12ef2628574b28de776",
                "md5": "85e64ea0b6146008a0d705d311e6a57d",
                "sha256": "80f85f0a7cc86e7a54c46d99c9e1318ff01f4687c172ede30fd52d19d1da1c8e"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "85e64ea0b6146008a0d705d311e6a57d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 39989,
            "upload_time": "2025-10-06T05:35:44",
            "upload_time_iso_8601": "2025-10-06T05:35:44.596858Z",
            "url": "https://files.pythonhosted.org/packages/39/75/1135feecdd7c336938bd55b4dc3b0dfc46d85b9be12ef2628574b28de776/frozenlist-1.8.0-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc03077f869d540370db12165c0aa51640a873fb661d8b315d1d4d67b284d7ac",
                "md5": "d97ee116c45d3e702919c5254fc36bfa",
                "sha256": "09474e9831bc2b2199fad6da3c14c7b0fbdd377cce9d3d77131be28906cb7d84"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "d97ee116c45d3e702919c5254fc36bfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 86912,
            "upload_time": "2025-10-06T05:35:45",
            "upload_time_iso_8601": "2025-10-06T05:35:45.980009Z",
            "url": "https://files.pythonhosted.org/packages/bc/03/077f869d540370db12165c0aa51640a873fb661d8b315d1d4d67b284d7ac/frozenlist-1.8.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dfb57610b6bd13e4ae77b96ba85abea1c8cb249683217ef09ac9e0ae93f25a91",
                "md5": "a9c277a9b9fb86f84c4a5c32dbb27d05",
                "sha256": "17c883ab0ab67200b5f964d2b9ed6b00971917d5d8a92df149dc2c9779208ee9"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a9c277a9b9fb86f84c4a5c32dbb27d05",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 50046,
            "upload_time": "2025-10-06T05:35:47",
            "upload_time_iso_8601": "2025-10-06T05:35:47.009279Z",
            "url": "https://files.pythonhosted.org/packages/df/b5/7610b6bd13e4ae77b96ba85abea1c8cb249683217ef09ac9e0ae93f25a91/frozenlist-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6eef0e8f1fe32f8a53dd26bdd1f9347efe0778b0fddf62789ea683f4cc7d787d",
                "md5": "e1a579fd3c7f277dd85e293201d460e8",
                "sha256": "fa47e444b8ba08fffd1c18e8cdb9a75db1b6a27f17507522834ad13ed5922b93"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e1a579fd3c7f277dd85e293201d460e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 50119,
            "upload_time": "2025-10-06T05:35:48",
            "upload_time_iso_8601": "2025-10-06T05:35:48.380096Z",
            "url": "https://files.pythonhosted.org/packages/6e/ef/0e8f1fe32f8a53dd26bdd1f9347efe0778b0fddf62789ea683f4cc7d787d/frozenlist-1.8.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11b171a477adc7c36e5fb628245dfbdea2166feae310757dea848d02bd0689fd",
                "md5": "2abfecd2a0671c4a5c6100aa9985edec",
                "sha256": "2552f44204b744fba866e573be4c1f9048d6a324dfe14475103fd51613eb1d1f"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2abfecd2a0671c4a5c6100aa9985edec",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 231067,
            "upload_time": "2025-10-06T05:35:49",
            "upload_time_iso_8601": "2025-10-06T05:35:49.970957Z",
            "url": "https://files.pythonhosted.org/packages/11/b1/71a477adc7c36e5fb628245dfbdea2166feae310757dea848d02bd0689fd/frozenlist-1.8.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "457eafe40eca3a2dc19b9904c0f5d7edfe82b5304cb831391edec0ac04af94c2",
                "md5": "a12ca36bd6b9ee564b0b4acf916fb2c9",
                "sha256": "957e7c38f250991e48a9a73e6423db1bb9dd14e722a10f6b8bb8e16a0f55f695"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a12ca36bd6b9ee564b0b4acf916fb2c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 233160,
            "upload_time": "2025-10-06T05:35:51",
            "upload_time_iso_8601": "2025-10-06T05:35:51.729275Z",
            "url": "https://files.pythonhosted.org/packages/45/7e/afe40eca3a2dc19b9904c0f5d7edfe82b5304cb831391edec0ac04af94c2/frozenlist-1.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a6aa7416eac95603ce428679d273255ffc7c998d4132cfae200103f164b108aa",
                "md5": "6f4c935de97a910071cd3e60db143071",
                "sha256": "8585e3bb2cdea02fc88ffa245069c36555557ad3609e83be0ec71f54fd4abb52"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6f4c935de97a910071cd3e60db143071",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 228544,
            "upload_time": "2025-10-06T05:35:53",
            "upload_time_iso_8601": "2025-10-06T05:35:53.246375Z",
            "url": "https://files.pythonhosted.org/packages/a6/aa/7416eac95603ce428679d273255ffc7c998d4132cfae200103f164b108aa/frozenlist-1.8.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b3d2a2d1f683d55ac7e3875e4263d28410063e738384d3adc294f5ff3d7105e",
                "md5": "bc8490d829e8af09d6a40925bc5062fd",
                "sha256": "edee74874ce20a373d62dc28b0b18b93f645633c2943fd90ee9d898550770581"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "bc8490d829e8af09d6a40925bc5062fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 243797,
            "upload_time": "2025-10-06T05:35:54",
            "upload_time_iso_8601": "2025-10-06T05:35:54.497568Z",
            "url": "https://files.pythonhosted.org/packages/8b/3d/2a2d1f683d55ac7e3875e4263d28410063e738384d3adc294f5ff3d7105e/frozenlist-1.8.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "781e2d5565b589e580c296d3bb54da08d206e797d941a83a6fdea42af23be79c",
                "md5": "52455ca099fbfc518eede718474ffeed",
                "sha256": "c9a63152fe95756b85f31186bddf42e4c02c6321207fd6601a1c89ebac4fe567"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "52455ca099fbfc518eede718474ffeed",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 247923,
            "upload_time": "2025-10-06T05:35:55",
            "upload_time_iso_8601": "2025-10-06T05:35:55.861894Z",
            "url": "https://files.pythonhosted.org/packages/78/1e/2d5565b589e580c296d3bb54da08d206e797d941a83a6fdea42af23be79c/frozenlist-1.8.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aac365872fcf1d326a7f101ad4d86285c403c87be7d832b7470b77f6d2ed5ddc",
                "md5": "b7dc4025e2631580a3733a2991e3bb17",
                "sha256": "b6db2185db9be0a04fecf2f241c70b63b1a242e2805be291855078f2b404dd6b"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b7dc4025e2631580a3733a2991e3bb17",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 230886,
            "upload_time": "2025-10-06T05:35:57",
            "upload_time_iso_8601": "2025-10-06T05:35:57.399433Z",
            "url": "https://files.pythonhosted.org/packages/aa/c3/65872fcf1d326a7f101ad4d86285c403c87be7d832b7470b77f6d2ed5ddc/frozenlist-1.8.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a076ac9ced601d62f6956f03cc794f9e04c81719509f85255abf96e2510f4265",
                "md5": "f541fad38087ac0fcbc6ce679a8a0a17",
                "sha256": "f4be2e3d8bc8aabd566f8d5b8ba7ecc09249d74ba3c9ed52e54dc23a293f0b92"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f541fad38087ac0fcbc6ce679a8a0a17",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 245731,
            "upload_time": "2025-10-06T05:35:58",
            "upload_time_iso_8601": "2025-10-06T05:35:58.563967Z",
            "url": "https://files.pythonhosted.org/packages/a0/76/ac9ced601d62f6956f03cc794f9e04c81719509f85255abf96e2510f4265/frozenlist-1.8.0-cp311-cp311-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b949ecccb5f2598daf0b4a1415497eba4c33c1e8ce07495eb07d2860c731b8d5",
                "md5": "a53c9d1170492ef07bd1659431d960b1",
                "sha256": "c8d1634419f39ea6f5c427ea2f90ca85126b54b50837f31497f3bf38266e853d"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a53c9d1170492ef07bd1659431d960b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 241544,
            "upload_time": "2025-10-06T05:35:59",
            "upload_time_iso_8601": "2025-10-06T05:35:59.719821Z",
            "url": "https://files.pythonhosted.org/packages/b9/49/ecccb5f2598daf0b4a1415497eba4c33c1e8ce07495eb07d2860c731b8d5/frozenlist-1.8.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "534bddf24113323c0bbcc54cb38c8b8916f1da7165e07b8e24a717b4a12cbf10",
                "md5": "138cb476d8a87eb461a31a2eda14fc2e",
                "sha256": "1a7fa382a4a223773ed64242dbe1c9c326ec09457e6b8428efb4118c685c3dfd"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp311-cp311-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "138cb476d8a87eb461a31a2eda14fc2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 241806,
            "upload_time": "2025-10-06T05:36:00",
            "upload_time_iso_8601": "2025-10-06T05:36:00.959823Z",
            "url": "https://files.pythonhosted.org/packages/53/4b/ddf24113323c0bbcc54cb38c8b8916f1da7165e07b8e24a717b4a12cbf10/frozenlist-1.8.0-cp311-cp311-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7fb9b9a084d73c67175484ba2789a59f8eebebd0827d186a8102005ce41e1ba",
                "md5": "0fc57312863fbc04eb0c0efb80f9200b",
                "sha256": "11847b53d722050808926e785df837353bd4d75f1d494377e59b23594d834967"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0fc57312863fbc04eb0c0efb80f9200b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 229382,
            "upload_time": "2025-10-06T05:36:02",
            "upload_time_iso_8601": "2025-10-06T05:36:02.220774Z",
            "url": "https://files.pythonhosted.org/packages/a7/fb/9b9a084d73c67175484ba2789a59f8eebebd0827d186a8102005ce41e1ba/frozenlist-1.8.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95a3c8fb25aac55bf5e12dae5c5aa6a98f85d436c1dc658f21c3ac73f9fa95e5",
                "md5": "b3274320c765685f92f1c468ed8e183a",
                "sha256": "27c6e8077956cf73eadd514be8fb04d77fc946a7fe9f7fe167648b0b9085cc25"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "b3274320c765685f92f1c468ed8e183a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 39647,
            "upload_time": "2025-10-06T05:36:03",
            "upload_time_iso_8601": "2025-10-06T05:36:03.409144Z",
            "url": "https://files.pythonhosted.org/packages/95/a3/c8fb25aac55bf5e12dae5c5aa6a98f85d436c1dc658f21c3ac73f9fa95e5/frozenlist-1.8.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0af5603d0d6a02cfd4c8f2a095a54672b3cf967ad688a60fb9faf04fc4887f65",
                "md5": "f9c438337250149d0cd0bf2b5ba54b9c",
                "sha256": "ac913f8403b36a2c8610bbfd25b8013488533e71e62b4b4adce9c86c8cea905b"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f9c438337250149d0cd0bf2b5ba54b9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 44064,
            "upload_time": "2025-10-06T05:36:04",
            "upload_time_iso_8601": "2025-10-06T05:36:04.368795Z",
            "url": "https://files.pythonhosted.org/packages/0a/f5/603d0d6a02cfd4c8f2a095a54672b3cf967ad688a60fb9faf04fc4887f65/frozenlist-1.8.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d16c2c9ab44e181f043a86f9a8f84d5124b62dbcb3a02c0977ec72b9ac1d3e0",
                "md5": "6247c282b46a35697845ae1dd4758e43",
                "sha256": "d4d3214a0f8394edfa3e303136d0575eece0745ff2b47bd2cb2e66dd92d4351a"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "6247c282b46a35697845ae1dd4758e43",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 39937,
            "upload_time": "2025-10-06T05:36:05",
            "upload_time_iso_8601": "2025-10-06T05:36:05.669409Z",
            "url": "https://files.pythonhosted.org/packages/5d/16/c2c9ab44e181f043a86f9a8f84d5124b62dbcb3a02c0977ec72b9ac1d3e0/frozenlist-1.8.0-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6929948b9aa87e75820a38650af445d2ef2b6b8a6fab1a23b6bb9e4ef0be2d59",
                "md5": "5cead96709e09c2b288fb43fed6fcd72",
                "sha256": "78f7b9e5d6f2fdb88cdde9440dc147259b62b9d3b019924def9f6478be254ac1"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp312-cp312-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "5cead96709e09c2b288fb43fed6fcd72",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 87782,
            "upload_time": "2025-10-06T05:36:06",
            "upload_time_iso_8601": "2025-10-06T05:36:06.649064Z",
            "url": "https://files.pythonhosted.org/packages/69/29/948b9aa87e75820a38650af445d2ef2b6b8a6fab1a23b6bb9e4ef0be2d59/frozenlist-1.8.0-cp312-cp312-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64804f6e318ee2a7c0750ed724fa33a4bdf1eacdc5a39a7a24e818a773cd91af",
                "md5": "20987d289596824d44c18e2eb7e25927",
                "sha256": "229bf37d2e4acdaf808fd3f06e854a4a7a3661e871b10dc1f8f1896a3b05f18b"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "20987d289596824d44c18e2eb7e25927",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 50594,
            "upload_time": "2025-10-06T05:36:07",
            "upload_time_iso_8601": "2025-10-06T05:36:07.690256Z",
            "url": "https://files.pythonhosted.org/packages/64/80/4f6e318ee2a7c0750ed724fa33a4bdf1eacdc5a39a7a24e818a773cd91af/frozenlist-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2b945c8a2b50a496b11dd519f4a24cb5496cf125681dd99e94c604ccdea9419a",
                "md5": "020f36f445d00dd2680785005ba2d54f",
                "sha256": "f833670942247a14eafbb675458b4e61c82e002a148f49e68257b79296e865c4"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "020f36f445d00dd2680785005ba2d54f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 50448,
            "upload_time": "2025-10-06T05:36:08",
            "upload_time_iso_8601": "2025-10-06T05:36:08.780035Z",
            "url": "https://files.pythonhosted.org/packages/2b/94/5c8a2b50a496b11dd519f4a24cb5496cf125681dd99e94c604ccdea9419a/frozenlist-1.8.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6abdd91c5e39f490a49df14320f4e8c80161cfcce09f1e2cde1edd16a551abb3",
                "md5": "fb935dbddbaf1a462dee83cffb711188",
                "sha256": "494a5952b1c597ba44e0e78113a7266e656b9794eec897b19ead706bd7074383"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb935dbddbaf1a462dee83cffb711188",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 242411,
            "upload_time": "2025-10-06T05:36:09",
            "upload_time_iso_8601": "2025-10-06T05:36:09.801664Z",
            "url": "https://files.pythonhosted.org/packages/6a/bd/d91c5e39f490a49df14320f4e8c80161cfcce09f1e2cde1edd16a551abb3/frozenlist-1.8.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f83f61505a05109ef3293dfb1ff594d13d64a2324ac3482be2cedc2be818256",
                "md5": "3b1eb730be516bc0cd082b6ff4bdff53",
                "sha256": "96f423a119f4777a4a056b66ce11527366a8bb92f54e541ade21f2374433f6d4"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3b1eb730be516bc0cd082b6ff4bdff53",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 243014,
            "upload_time": "2025-10-06T05:36:11",
            "upload_time_iso_8601": "2025-10-06T05:36:11.394884Z",
            "url": "https://files.pythonhosted.org/packages/8f/83/f61505a05109ef3293dfb1ff594d13d64a2324ac3482be2cedc2be818256/frozenlist-1.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d8cbcb6c7b0f7d4023ddda30cf56b8b17494eb3a79e3fda666bf735f63118b35",
                "md5": "0b764ff3970de7c3049c49d40caefc54",
                "sha256": "3462dd9475af2025c31cc61be6652dfa25cbfb56cbbf52f4ccfe029f38decaf8"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0b764ff3970de7c3049c49d40caefc54",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 234909,
            "upload_time": "2025-10-06T05:36:12",
            "upload_time_iso_8601": "2025-10-06T05:36:12.598151Z",
            "url": "https://files.pythonhosted.org/packages/d8/cb/cb6c7b0f7d4023ddda30cf56b8b17494eb3a79e3fda666bf735f63118b35/frozenlist-1.8.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "31c5cd7a1f3b8b34af009fb17d4123c5a778b44ae2804e3ad6b86204255f9ec5",
                "md5": "ffe63dafc59d5e68f397472e84543200",
                "sha256": "c4c800524c9cd9bac5166cd6f55285957fcfc907db323e193f2afcd4d9abd69b"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ffe63dafc59d5e68f397472e84543200",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 250049,
            "upload_time": "2025-10-06T05:36:14",
            "upload_time_iso_8601": "2025-10-06T05:36:14.065737Z",
            "url": "https://files.pythonhosted.org/packages/31/c5/cd7a1f3b8b34af009fb17d4123c5a778b44ae2804e3ad6b86204255f9ec5/frozenlist-1.8.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0012f95d3b416c584a1e7f0e1d6d31998c4a795f7544069ee2e0962a4b60740",
                "md5": "eb2011c2fd1fbe6b7f94e7a5d7f0bc7a",
                "sha256": "d6a5df73acd3399d893dafc71663ad22534b5aa4f94e8a2fabfe856c3c1b6a52"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "eb2011c2fd1fbe6b7f94e7a5d7f0bc7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 256485,
            "upload_time": "2025-10-06T05:36:15",
            "upload_time_iso_8601": "2025-10-06T05:36:15.390238Z",
            "url": "https://files.pythonhosted.org/packages/c0/01/2f95d3b416c584a1e7f0e1d6d31998c4a795f7544069ee2e0962a4b60740/frozenlist-1.8.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ce03024bf7720b3abaebcff6d0793d73c154237b85bdf67b7ed55e5e9596dc9a",
                "md5": "8d4077d09f4ab97d1d811c962603e692",
                "sha256": "405e8fe955c2280ce66428b3ca55e12b3c4e9c336fb2103a4937e891c69a4a29"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8d4077d09f4ab97d1d811c962603e692",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 237619,
            "upload_time": "2025-10-06T05:36:16",
            "upload_time_iso_8601": "2025-10-06T05:36:16.558374Z",
            "url": "https://files.pythonhosted.org/packages/ce/03/024bf7720b3abaebcff6d0793d73c154237b85bdf67b7ed55e5e9596dc9a/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "69faf8abdfe7d76b731f5d8bd217827cf6764d4f1d9763407e42717b4bed50a0",
                "md5": "571aa5701aae5791829bcee57e437cd9",
                "sha256": "908bd3f6439f2fef9e85031b59fd4f1297af54415fb60e4254a95f75b3cab3f3"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "571aa5701aae5791829bcee57e437cd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 250320,
            "upload_time": "2025-10-06T05:36:17",
            "upload_time_iso_8601": "2025-10-06T05:36:17.821737Z",
            "url": "https://files.pythonhosted.org/packages/69/fa/f8abdfe7d76b731f5d8bd217827cf6764d4f1d9763407e42717b4bed50a0/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f53cb051329f718b463b22613e269ad72138cc256c540f78a6de89452803a47d",
                "md5": "0847faa3a9feeaee40300dd38084dd28",
                "sha256": "294e487f9ec720bd8ffcebc99d575f7eff3568a08a253d1ee1a0378754b74143"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0847faa3a9feeaee40300dd38084dd28",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 246820,
            "upload_time": "2025-10-06T05:36:19",
            "upload_time_iso_8601": "2025-10-06T05:36:19.046631Z",
            "url": "https://files.pythonhosted.org/packages/f5/3c/b051329f718b463b22613e269ad72138cc256c540f78a6de89452803a47d/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0fae58282e8f98e444b3f4dd42448ff36fa38bef29e40d40f330b22e7108f565",
                "md5": "26176208cc77c63451aeafe1539e5246",
                "sha256": "74c51543498289c0c43656701be6b077f4b265868fa7f8a8859c197006efb608"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp312-cp312-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "26176208cc77c63451aeafe1539e5246",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 250518,
            "upload_time": "2025-10-06T05:36:20",
            "upload_time_iso_8601": "2025-10-06T05:36:20.763061Z",
            "url": "https://files.pythonhosted.org/packages/0f/ae/58282e8f98e444b3f4dd42448ff36fa38bef29e40d40f330b22e7108f565/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f96007e5944694d66123183845a106547a15944fbbb7154788cbf7272789536",
                "md5": "97d9885fcae9ead4de568cbbf5e021e7",
                "sha256": "776f352e8329135506a1d6bf16ac3f87bc25b28e765949282dcc627af36123aa"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "97d9885fcae9ead4de568cbbf5e021e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 239096,
            "upload_time": "2025-10-06T05:36:22",
            "upload_time_iso_8601": "2025-10-06T05:36:22.129344Z",
            "url": "https://files.pythonhosted.org/packages/8f/96/007e5944694d66123183845a106547a15944fbbb7154788cbf7272789536/frozenlist-1.8.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66bb852b9d6db2fa40be96f29c0d1205c306288f0684df8fd26ca1951d461a56",
                "md5": "59b806ad336f6199e4c0ef2b47b85239",
                "sha256": "433403ae80709741ce34038da08511d4a77062aa924baf411ef73d1146e74faf"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "59b806ad336f6199e4c0ef2b47b85239",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 39985,
            "upload_time": "2025-10-06T05:36:23",
            "upload_time_iso_8601": "2025-10-06T05:36:23.661549Z",
            "url": "https://files.pythonhosted.org/packages/66/bb/852b9d6db2fa40be96f29c0d1205c306288f0684df8fd26ca1951d461a56/frozenlist-1.8.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b8af38e51a553dd66eb064cdf193841f16f077585d4d28394c2fa6235cb41765",
                "md5": "c02861a862cd489d04cf9c2dc5311e4a",
                "sha256": "34187385b08f866104f0c0617404c8eb08165ab1272e884abc89c112e9c00746"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c02861a862cd489d04cf9c2dc5311e4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 44591,
            "upload_time": "2025-10-06T05:36:24",
            "upload_time_iso_8601": "2025-10-06T05:36:24.958664Z",
            "url": "https://files.pythonhosted.org/packages/b8/af/38e51a553dd66eb064cdf193841f16f077585d4d28394c2fa6235cb41765/frozenlist-1.8.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7061dc65480ab147339fecc70797e9c2f69d9cea9cf38934ce08df070fdb9cb",
                "md5": "3a189f977ca3182167a839771c63fcd5",
                "sha256": "fe3c58d2f5db5fbd18c2987cba06d51b0529f52bc3a6cdc33d3f4eab725104bd"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "3a189f977ca3182167a839771c63fcd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 40102,
            "upload_time": "2025-10-06T05:36:26",
            "upload_time_iso_8601": "2025-10-06T05:36:26.333071Z",
            "url": "https://files.pythonhosted.org/packages/a7/06/1dc65480ab147339fecc70797e9c2f69d9cea9cf38934ce08df070fdb9cb/frozenlist-1.8.0-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d400832c31a37d60f60ed79e9dfb5a92e1e2af4f40a16a29abcc7992af9edff",
                "md5": "3bc73d3946cbbf8dd5a83eb89ca41fe3",
                "sha256": "8d92f1a84bb12d9e56f818b3a746f3efba93c1b63c8387a73dde655e1e42282a"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "3bc73d3946cbbf8dd5a83eb89ca41fe3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 85717,
            "upload_time": "2025-10-06T05:36:27",
            "upload_time_iso_8601": "2025-10-06T05:36:27.341499Z",
            "url": "https://files.pythonhosted.org/packages/2d/40/0832c31a37d60f60ed79e9dfb5a92e1e2af4f40a16a29abcc7992af9edff/frozenlist-1.8.0-cp313-cp313-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30bab0b3de23f40bc55a7057bd38434e25c34fa48e17f20ee273bbde5e0650f3",
                "md5": "11a30f3bb2f607c3cff14e5c15c29a2c",
                "sha256": "96153e77a591c8adc2ee805756c61f59fef4cf4073a9275ee86fe8cba41241f7"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "11a30f3bb2f607c3cff14e5c15c29a2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 49651,
            "upload_time": "2025-10-06T05:36:28",
            "upload_time_iso_8601": "2025-10-06T05:36:28.855934Z",
            "url": "https://files.pythonhosted.org/packages/30/ba/b0b3de23f40bc55a7057bd38434e25c34fa48e17f20ee273bbde5e0650f3/frozenlist-1.8.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0cab6e5080ee374f875296c4243c381bbdef97a9ac39c6e3ce1d5f7d42cb78d6",
                "md5": "2088608ffea32ffb13475c20512ed96f",
                "sha256": "f21f00a91358803399890ab167098c131ec2ddd5f8f5fd5fe9c9f2c6fcd91e40"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2088608ffea32ffb13475c20512ed96f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 49417,
            "upload_time": "2025-10-06T05:36:29",
            "upload_time_iso_8601": "2025-10-06T05:36:29.877766Z",
            "url": "https://files.pythonhosted.org/packages/0c/ab/6e5080ee374f875296c4243c381bbdef97a9ac39c6e3ce1d5f7d42cb78d6/frozenlist-1.8.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d54ee4691508f9477ce67da2015d8c00acd751e6287739123113a9fca6f1604e",
                "md5": "bfa97faad07dd1fe113dd30058635b7a",
                "sha256": "fb30f9626572a76dfe4293c7194a09fb1fe93ba94c7d4f720dfae3b646b45027"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bfa97faad07dd1fe113dd30058635b7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 234391,
            "upload_time": "2025-10-06T05:36:31",
            "upload_time_iso_8601": "2025-10-06T05:36:31.301149Z",
            "url": "https://files.pythonhosted.org/packages/d5/4e/e4691508f9477ce67da2015d8c00acd751e6287739123113a9fca6f1604e/frozenlist-1.8.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4076c202df58e3acdf12969a7895fd6f3bc016c642e6726aa63bd3025e0fc71c",
                "md5": "159f40b396b38674b2015ab28bf1d35d",
                "sha256": "eaa352d7047a31d87dafcacbabe89df0aa506abb5b1b85a2fb91bc3faa02d822"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "159f40b396b38674b2015ab28bf1d35d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 233048,
            "upload_time": "2025-10-06T05:36:32",
            "upload_time_iso_8601": "2025-10-06T05:36:32.531396Z",
            "url": "https://files.pythonhosted.org/packages/40/76/c202df58e3acdf12969a7895fd6f3bc016c642e6726aa63bd3025e0fc71c/frozenlist-1.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f9c08746afb90f17b73ca5979c7a3958116e105ff796e718575175319b5bb4ce",
                "md5": "5c14fdad524abb3c33f038a5c5a4acb5",
                "sha256": "03ae967b4e297f58f8c774c7eabcce57fe3c2434817d4385c50661845a058121"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5c14fdad524abb3c33f038a5c5a4acb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 226549,
            "upload_time": "2025-10-06T05:36:33",
            "upload_time_iso_8601": "2025-10-06T05:36:33.706982Z",
            "url": "https://files.pythonhosted.org/packages/f9/c0/8746afb90f17b73ca5979c7a3958116e105ff796e718575175319b5bb4ce/frozenlist-1.8.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7eeb4c7eefc718ff72f9b6c4893291abaae5fbc0c82226a32dcd8ef4f7a5dbef",
                "md5": "65279fa5e6d787927bf9040878bfa361",
                "sha256": "f6292f1de555ffcc675941d65fffffb0a5bcd992905015f85d0592201793e0e5"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "65279fa5e6d787927bf9040878bfa361",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 239833,
            "upload_time": "2025-10-06T05:36:34",
            "upload_time_iso_8601": "2025-10-06T05:36:34.947624Z",
            "url": "https://files.pythonhosted.org/packages/7e/eb/4c7eefc718ff72f9b6c4893291abaae5fbc0c82226a32dcd8ef4f7a5dbef/frozenlist-1.8.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c24ee5c02187cf704224f8b21bee886f3d713ca379535f16893233b9d672ea71",
                "md5": "ff4e6cff78af20e7a931bcf2b6bb6575",
                "sha256": "29548f9b5b5e3460ce7378144c3010363d8035cea44bc0bf02d57f5a685e084e"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "ff4e6cff78af20e7a931bcf2b6bb6575",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 245363,
            "upload_time": "2025-10-06T05:36:36",
            "upload_time_iso_8601": "2025-10-06T05:36:36.534382Z",
            "url": "https://files.pythonhosted.org/packages/c2/4e/e5c02187cf704224f8b21bee886f3d713ca379535f16893233b9d672ea71/frozenlist-1.8.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f96cb85ec608464472e82ad37a17f844889c36100eed57bea094518bf270692",
                "md5": "14b9c7bb56f5744309ab3c1cd08228d7",
                "sha256": "ec3cc8c5d4084591b4237c0a272cc4f50a5b03396a47d9caaf76f5d7b38a4f11"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "14b9c7bb56f5744309ab3c1cd08228d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 229314,
            "upload_time": "2025-10-06T05:36:38",
            "upload_time_iso_8601": "2025-10-06T05:36:38.582378Z",
            "url": "https://files.pythonhosted.org/packages/1f/96/cb85ec608464472e82ad37a17f844889c36100eed57bea094518bf270692/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d6f4ae69c550e4cee66b57887daeebe006fe985917c01d0fff9caab9883f6d0",
                "md5": "7623127e4006159e1d926a73387a5087",
                "sha256": "517279f58009d0b1f2e7c1b130b377a349405da3f7621ed6bfae50b10adf20c1"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7623127e4006159e1d926a73387a5087",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 243365,
            "upload_time": "2025-10-06T05:36:40",
            "upload_time_iso_8601": "2025-10-06T05:36:40.152839Z",
            "url": "https://files.pythonhosted.org/packages/5d/6f/4ae69c550e4cee66b57887daeebe006fe985917c01d0fff9caab9883f6d0/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a58afd56de246cf11780a40a2c28dc7cbabbf06337cc8ddb1c780a2d97e88d8",
                "md5": "717719963cd6edb756d73b65b4a79ba0",
                "sha256": "db1e72ede2d0d7ccb213f218df6a078a9c09a7de257c2fe8fcef16d5925230b1"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "717719963cd6edb756d73b65b4a79ba0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 237763,
            "upload_time": "2025-10-06T05:36:41",
            "upload_time_iso_8601": "2025-10-06T05:36:41.355922Z",
            "url": "https://files.pythonhosted.org/packages/7a/58/afd56de246cf11780a40a2c28dc7cbabbf06337cc8ddb1c780a2d97e88d8/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb36cdfaf6ed42e2644740d4a10452d8e97fa1c062e2a8006e4b09f1b5fd7d63",
                "md5": "1af054fc8fba59d228b70d3d76dd1535",
                "sha256": "b4dec9482a65c54a5044486847b8a66bf10c9cb4926d42927ec4e8fd5db7fed8"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "1af054fc8fba59d228b70d3d76dd1535",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 240110,
            "upload_time": "2025-10-06T05:36:42",
            "upload_time_iso_8601": "2025-10-06T05:36:42.716448Z",
            "url": "https://files.pythonhosted.org/packages/cb/36/cdfaf6ed42e2644740d4a10452d8e97fa1c062e2a8006e4b09f1b5fd7d63/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "03a89ea226fbefad669f11b52e864c55f0bd57d3c8d7eb07e9f2e9a0b39502e1",
                "md5": "929a595dea7c9885580cd090cffaf0ef",
                "sha256": "21900c48ae04d13d416f0e1e0c4d81f7931f73a9dfa0b7a8746fb2fe7dd970ed"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "929a595dea7c9885580cd090cffaf0ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 233717,
            "upload_time": "2025-10-06T05:36:44",
            "upload_time_iso_8601": "2025-10-06T05:36:44.251072Z",
            "url": "https://files.pythonhosted.org/packages/03/a8/9ea226fbefad669f11b52e864c55f0bd57d3c8d7eb07e9f2e9a0b39502e1/frozenlist-1.8.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d25c3bbfaa920dfab09e76946a5d2833a7cbdf7b9b4a91c714666ac4855b88b4",
                "md5": "dee06995bf6fab6b0ed4c8eab694c7be",
                "sha256": "e25ac20a2ef37e91c1b39938b591457666a0fa835c7783c3a8f33ea42870db94"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313t-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "dee06995bf6fab6b0ed4c8eab694c7be",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 89235,
            "upload_time": "2025-10-06T05:36:48",
            "upload_time_iso_8601": "2025-10-06T05:36:48.780693Z",
            "url": "https://files.pythonhosted.org/packages/d2/5c/3bbfaa920dfab09e76946a5d2833a7cbdf7b9b4a91c714666ac4855b88b4/frozenlist-1.8.0-cp313-cp313t-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d2d6f03961ef72166cec1687e84e8925838442b615bd0b8854b54923ce5b7b8a",
                "md5": "76bff47e4e9623f6bbf679fd0486c2f1",
                "sha256": "07cdca25a91a4386d2e76ad992916a85038a9b97561bf7a3fd12d5d9ce31870c"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313t-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "76bff47e4e9623f6bbf679fd0486c2f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 50742,
            "upload_time": "2025-10-06T05:36:49",
            "upload_time_iso_8601": "2025-10-06T05:36:49.837280Z",
            "url": "https://files.pythonhosted.org/packages/d2/d6/f03961ef72166cec1687e84e8925838442b615bd0b8854b54923ce5b7b8a/frozenlist-1.8.0-cp313-cp313t-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1ebba6d12b7ba4c3337667d0e421f7181c82dda448ce4e7ad7ecd249a16fa806",
                "md5": "df89152421e3ce323212b0058988598a",
                "sha256": "4e0c11f2cc6717e0a741f84a527c52616140741cd812a50422f83dc31749fb52"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "df89152421e3ce323212b0058988598a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 51725,
            "upload_time": "2025-10-06T05:36:50",
            "upload_time_iso_8601": "2025-10-06T05:36:50.851914Z",
            "url": "https://files.pythonhosted.org/packages/1e/bb/a6d12b7ba4c3337667d0e421f7181c82dda448ce4e7ad7ecd249a16fa806/frozenlist-1.8.0-cp313-cp313t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc71d1fed0ffe2c2ccd70b43714c6cab0f4188f09f8a67a7914a6b46ee30f274",
                "md5": "6a47e8f68f7dbc2f860dbdbf2423a42f",
                "sha256": "b3210649ee28062ea6099cfda39e147fa1bc039583c8ee4481cb7811e2448c51"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a47e8f68f7dbc2f860dbdbf2423a42f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 284533,
            "upload_time": "2025-10-06T05:36:51",
            "upload_time_iso_8601": "2025-10-06T05:36:51.898539Z",
            "url": "https://files.pythonhosted.org/packages/bc/71/d1fed0ffe2c2ccd70b43714c6cab0f4188f09f8a67a7914a6b46ee30f274/frozenlist-1.8.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c91ffb1685a7b009d89f9bf78a42d94461bc06581f6e718c39344754a5d9bada",
                "md5": "c1e3e7a87c0ab35e45120cbd83eb413d",
                "sha256": "581ef5194c48035a7de2aefc72ac6539823bb71508189e5de01d60c9dcd5fa65"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c1e3e7a87c0ab35e45120cbd83eb413d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 292506,
            "upload_time": "2025-10-06T05:36:53",
            "upload_time_iso_8601": "2025-10-06T05:36:53.101791Z",
            "url": "https://files.pythonhosted.org/packages/c9/1f/fb1685a7b009d89f9bf78a42d94461bc06581f6e718c39344754a5d9bada/frozenlist-1.8.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e63bb991fe1612703f7e0d05c0cf734c1b77aaf7c7d321df4572e8d36e7048c8",
                "md5": "3d398aa457bc0e27510d3b97c9bfa373",
                "sha256": "3ef2d026f16a2b1866e1d86fc4e1291e1ed8a387b2c333809419a2f8b3a77b82"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3d398aa457bc0e27510d3b97c9bfa373",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 274161,
            "upload_time": "2025-10-06T05:36:54",
            "upload_time_iso_8601": "2025-10-06T05:36:54.309495Z",
            "url": "https://files.pythonhosted.org/packages/e6/3b/b991fe1612703f7e0d05c0cf734c1b77aaf7c7d321df4572e8d36e7048c8/frozenlist-1.8.0-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "caecc5c618767bcdf66e88945ec0157d7f6c4a1322f1473392319b7a2501ded7",
                "md5": "a57c7d2d637978cde579778407f262a0",
                "sha256": "5500ef82073f599ac84d888e3a8c1f77ac831183244bfd7f11eaa0289fb30714"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a57c7d2d637978cde579778407f262a0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 294676,
            "upload_time": "2025-10-06T05:36:55",
            "upload_time_iso_8601": "2025-10-06T05:36:55.566951Z",
            "url": "https://files.pythonhosted.org/packages/ca/ec/c5c618767bcdf66e88945ec0157d7f6c4a1322f1473392319b7a2501ded7/frozenlist-1.8.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7cce3934758637d8f8a88d11f0585d6495ef54b2044ed6ec84492a91fa3b27aa",
                "md5": "c14757e66e9fadbeded83ab6c509092a",
                "sha256": "50066c3997d0091c411a66e710f4e11752251e6d2d73d70d8d5d4c76442a199d"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "c14757e66e9fadbeded83ab6c509092a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 300638,
            "upload_time": "2025-10-06T05:36:56",
            "upload_time_iso_8601": "2025-10-06T05:36:56.758746Z",
            "url": "https://files.pythonhosted.org/packages/7c/ce/3934758637d8f8a88d11f0585d6495ef54b2044ed6ec84492a91fa3b27aa/frozenlist-1.8.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc4fa7e4d0d467298f42de4b41cbc7ddaf19d3cfeabaf9ff97c20c6c7ee409f9",
                "md5": "6262ef25950155c3c5c63d9ed40b4047",
                "sha256": "5c1c8e78426e59b3f8005e9b19f6ff46e5845895adbde20ece9218319eca6506"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6262ef25950155c3c5c63d9ed40b4047",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 283067,
            "upload_time": "2025-10-06T05:36:57",
            "upload_time_iso_8601": "2025-10-06T05:36:57.965510Z",
            "url": "https://files.pythonhosted.org/packages/fc/4f/a7e4d0d467298f42de4b41cbc7ddaf19d3cfeabaf9ff97c20c6c7ee409f9/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc48c7b163063d55a83772b268e6d1affb960771b0e203b632cfe09522d67ea5",
                "md5": "913e91e18b3483633fe202290c1fe343",
                "sha256": "eefdba20de0d938cec6a89bd4d70f346a03108a19b9df4248d3cf0d88f1b0f51"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "913e91e18b3483633fe202290c1fe343",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 292101,
            "upload_time": "2025-10-06T05:36:59",
            "upload_time_iso_8601": "2025-10-06T05:36:59.237186Z",
            "url": "https://files.pythonhosted.org/packages/dc/48/c7b163063d55a83772b268e6d1affb960771b0e203b632cfe09522d67ea5/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fd02366d3c4ecdc2fd391e0afa6e11500bfba0ea772764d631bbf82f0136c9d",
                "md5": "3c64c5476dcdd4b3852227897adfe65b",
                "sha256": "cf253e0e1c3ceb4aaff6df637ce033ff6535fb8c70a764a8f46aafd3d6ab798e"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3c64c5476dcdd4b3852227897adfe65b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 289901,
            "upload_time": "2025-10-06T05:37:00",
            "upload_time_iso_8601": "2025-10-06T05:37:00.811800Z",
            "url": "https://files.pythonhosted.org/packages/9f/d0/2366d3c4ecdc2fd391e0afa6e11500bfba0ea772764d631bbf82f0136c9d/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b894daff920e82c1b70e3618a2ac39fbc01ae3e2ff6124e80739ce5d71c9b920",
                "md5": "f4ec2ab42ce1b6885778b73e9d09853e",
                "sha256": "032efa2674356903cd0261c4317a561a6850f3ac864a63fc1583147fb05a79b0"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "f4ec2ab42ce1b6885778b73e9d09853e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 289395,
            "upload_time": "2025-10-06T05:37:02",
            "upload_time_iso_8601": "2025-10-06T05:37:02.115510Z",
            "url": "https://files.pythonhosted.org/packages/b8/94/daff920e82c1b70e3618a2ac39fbc01ae3e2ff6124e80739ce5d71c9b920/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e320bba307ab4235a09fdcd3cc5508dbabd17c4634a1af4b96e0f69bfe551ebd",
                "md5": "950405c2f6f41cb085f51d4bedefdac1",
                "sha256": "6da155091429aeba16851ecb10a9104a108bcd32f6c1642867eadaee401c1c41"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "950405c2f6f41cb085f51d4bedefdac1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 283659,
            "upload_time": "2025-10-06T05:37:03",
            "upload_time_iso_8601": "2025-10-06T05:37:03.711413Z",
            "url": "https://files.pythonhosted.org/packages/e3/20/bba307ab4235a09fdcd3cc5508dbabd17c4634a1af4b96e0f69bfe551ebd/frozenlist-1.8.0-cp313-cp313t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd0004ca1c3a7a124b6de4f8a9a17cc2fcad138b4608e7a3fc5877804b8715d7",
                "md5": "0e61ce5aefbe0fa71fdbde87f25cc019",
                "sha256": "0f96534f8bfebc1a394209427d0f8a63d343c9779cda6fc25e8e121b5fd8555b"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313t-win32.whl",
            "has_sig": false,
            "md5_digest": "0e61ce5aefbe0fa71fdbde87f25cc019",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 43492,
            "upload_time": "2025-10-06T05:37:04",
            "upload_time_iso_8601": "2025-10-06T05:37:04.915850Z",
            "url": "https://files.pythonhosted.org/packages/fd/00/04ca1c3a7a124b6de4f8a9a17cc2fcad138b4608e7a3fc5877804b8715d7/frozenlist-1.8.0-cp313-cp313t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "595ec69f733a86a94ab10f68e496dc6b7e8bc078ebb415281d5698313e3af3a1",
                "md5": "63186fece8f2bc4b2440e8a241527c8e",
                "sha256": "5d63a068f978fc69421fb0e6eb91a9603187527c86b7cd3f534a5b77a592b888"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "63186fece8f2bc4b2440e8a241527c8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 48034,
            "upload_time": "2025-10-06T05:37:06",
            "upload_time_iso_8601": "2025-10-06T05:37:06.343982Z",
            "url": "https://files.pythonhosted.org/packages/59/5e/c69f733a86a94ab10f68e496dc6b7e8bc078ebb415281d5698313e3af3a1/frozenlist-1.8.0-cp313-cp313t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "166cbe9d79775d8abe79b05fa6d23da99ad6e7763a1d080fbae7290b286093fd",
                "md5": "a83908c8493e3437ce596606c07f86dd",
                "sha256": "bf0a7e10b077bf5fb9380ad3ae8ce20ef919a6ad93b4552896419ac7e1d8e042"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "a83908c8493e3437ce596606c07f86dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 41749,
            "upload_time": "2025-10-06T05:37:07",
            "upload_time_iso_8601": "2025-10-06T05:37:07.431485Z",
            "url": "https://files.pythonhosted.org/packages/16/6c/be9d79775d8abe79b05fa6d23da99ad6e7763a1d080fbae7290b286093fd/frozenlist-1.8.0-cp313-cp313t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e0b1b5531611e83ba7d13ccc9988967ea1b51186af64c42b7a7af465dcc9568",
                "md5": "636e9e2971ed3ce8f7849e406a992fdd",
                "sha256": "8b7b94a067d1c504ee0b16def57ad5738701e4ba10cec90529f13fa03c833496"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "636e9e2971ed3ce8f7849e406a992fdd",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 39628,
            "upload_time": "2025-10-06T05:36:45",
            "upload_time_iso_8601": "2025-10-06T05:36:45.423602Z",
            "url": "https://files.pythonhosted.org/packages/1e/0b/1b5531611e83ba7d13ccc9988967ea1b51186af64c42b7a7af465dcc9568/frozenlist-1.8.0-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d8cf174c91dbc9cc49bc7b7aab74d8b734e974d1faa8f191c74af9b7e80848e6",
                "md5": "56ecddc553d9863c566910d06d5467fe",
                "sha256": "878be833caa6a3821caf85eb39c5ba92d28e85df26d57afb06b35b2efd937231"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "56ecddc553d9863c566910d06d5467fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 43882,
            "upload_time": "2025-10-06T05:36:46",
            "upload_time_iso_8601": "2025-10-06T05:36:46.796307Z",
            "url": "https://files.pythonhosted.org/packages/d8/cf/174c91dbc9cc49bc7b7aab74d8b734e974d1faa8f191c74af9b7e80848e6/frozenlist-1.8.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c117502cd212cbfa96eb1388614fe39a3fc9ab87dbbe042b66f97acb57474834",
                "md5": "9a07ba17d85484ccef20dfa493b67489",
                "sha256": "44389d135b3ff43ba8cc89ff7f51f5a0bb6b63d829c8300f79a2fe4fe61bcc62"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "9a07ba17d85484ccef20dfa493b67489",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.9",
            "size": 39676,
            "upload_time": "2025-10-06T05:36:47",
            "upload_time_iso_8601": "2025-10-06T05:36:47.800391Z",
            "url": "https://files.pythonhosted.org/packages/c1/17/502cd212cbfa96eb1388614fe39a3fc9ab87dbbe042b66f97acb57474834/frozenlist-1.8.0-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f1c885da824b7e7b9b6e7f7705b2ecaf9591ba6f79c1177f324c2735e41d36a2",
                "md5": "ef4794ae4a9a8291439be44a7c978965",
                "sha256": "cee686f1f4cadeb2136007ddedd0aaf928ab95216e7691c63e50a8ec066336d0"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "ef4794ae4a9a8291439be44a7c978965",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 86127,
            "upload_time": "2025-10-06T05:37:08",
            "upload_time_iso_8601": "2025-10-06T05:37:08.438558Z",
            "url": "https://files.pythonhosted.org/packages/f1/c8/85da824b7e7b9b6e7f7705b2ecaf9591ba6f79c1177f324c2735e41d36a2/frozenlist-1.8.0-cp314-cp314-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ee8a1185e236ec66c20afd72399522f142c3724c785789255202d27ae992818",
                "md5": "533261d7c7915ca3283cd96d964efe46",
                "sha256": "119fb2a1bd47307e899c2fac7f28e85b9a543864df47aa7ec9d3c1b4545f096f"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "533261d7c7915ca3283cd96d964efe46",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 49698,
            "upload_time": "2025-10-06T05:37:09",
            "upload_time_iso_8601": "2025-10-06T05:37:09.480047Z",
            "url": "https://files.pythonhosted.org/packages/8e/e8/a1185e236ec66c20afd72399522f142c3724c785789255202d27ae992818/frozenlist-1.8.0-cp314-cp314-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a19372b1736d68f03fda5fdf0f2180fb6caaae3894f1b854d006ac61ecc727ee",
                "md5": "d9cbe1294516cb1d066f26162848374f",
                "sha256": "4970ece02dbc8c3a92fcc5228e36a3e933a01a999f7094ff7c23fbd2beeaa67c"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d9cbe1294516cb1d066f26162848374f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 49749,
            "upload_time": "2025-10-06T05:37:10",
            "upload_time_iso_8601": "2025-10-06T05:37:10.569624Z",
            "url": "https://files.pythonhosted.org/packages/a1/93/72b1736d68f03fda5fdf0f2180fb6caaae3894f1b854d006ac61ecc727ee/frozenlist-1.8.0-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7b2fabede9fafd976b991e9f1b9c8c873ed86f202889b864756f240ce6dd855",
                "md5": "3228e4b095dd122423cabe9fb2542c2e",
                "sha256": "cba69cb73723c3f329622e34bdbf5ce1f80c21c290ff04256cff1cd3c2036ed2"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3228e4b095dd122423cabe9fb2542c2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 231298,
            "upload_time": "2025-10-06T05:37:11",
            "upload_time_iso_8601": "2025-10-06T05:37:11.993635Z",
            "url": "https://files.pythonhosted.org/packages/a7/b2/fabede9fafd976b991e9f1b9c8c873ed86f202889b864756f240ce6dd855/frozenlist-1.8.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a3bd9b1e0b0eed36e70477ffb8360c49c85c8ca8ef9700a4e6711f39a6e8b45",
                "md5": "e0505af4d60665218fd167f879a9f91c",
                "sha256": "778a11b15673f6f1df23d9586f83c4846c471a8af693a22e066508b77d201ec8"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e0505af4d60665218fd167f879a9f91c",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 232015,
            "upload_time": "2025-10-06T05:37:13",
            "upload_time_iso_8601": "2025-10-06T05:37:13.194717Z",
            "url": "https://files.pythonhosted.org/packages/3a/3b/d9b1e0b0eed36e70477ffb8360c49c85c8ca8ef9700a4e6711f39a6e8b45/frozenlist-1.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc94be719d2766c1138148564a3960fc2c06eb688da592bdc25adcf856101be7",
                "md5": "6c0932cc8ca410ab7b8f0de15c58a828",
                "sha256": "0325024fe97f94c41c08872db482cf8ac4800d80e79222c6b0b7b162d5b13686"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6c0932cc8ca410ab7b8f0de15c58a828",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 225038,
            "upload_time": "2025-10-06T05:37:14",
            "upload_time_iso_8601": "2025-10-06T05:37:14.577112Z",
            "url": "https://files.pythonhosted.org/packages/dc/94/be719d2766c1138148564a3960fc2c06eb688da592bdc25adcf856101be7/frozenlist-1.8.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e4096712b6c5465f083f52f50cf74167b92d4ea2f50e46a9eea0523d658454ae",
                "md5": "d91dc1d65e16994cffadf4a865d7a113",
                "sha256": "97260ff46b207a82a7567b581ab4190bd4dfa09f4db8a8b49d1a958f6aa4940e"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d91dc1d65e16994cffadf4a865d7a113",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 240130,
            "upload_time": "2025-10-06T05:37:15",
            "upload_time_iso_8601": "2025-10-06T05:37:15.781102Z",
            "url": "https://files.pythonhosted.org/packages/e4/09/6712b6c5465f083f52f50cf74167b92d4ea2f50e46a9eea0523d658454ae/frozenlist-1.8.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8d4cd065cdcf21550b54f3ce6a22e143ac9e4836ca42a0de1022da8498eac89",
                "md5": "6212b654f3c1bf17b9165fd0ec28a415",
                "sha256": "54b2077180eb7f83dd52c40b2750d0a9f175e06a42e3213ce047219de902717a"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "6212b654f3c1bf17b9165fd0ec28a415",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 242845,
            "upload_time": "2025-10-06T05:37:17",
            "upload_time_iso_8601": "2025-10-06T05:37:17.037608Z",
            "url": "https://files.pythonhosted.org/packages/f8/d4/cd065cdcf21550b54f3ce6a22e143ac9e4836ca42a0de1022da8498eac89/frozenlist-1.8.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "62c3f57a5c8c70cd1ead3d5d5f776f89d33110b1addae0ab010ad774d9a44fb9",
                "md5": "816c630a88e79fecfdb7cea1a91eb385",
                "sha256": "2f05983daecab868a31e1da44462873306d3cbfd76d1f0b5b69c473d21dbb128"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "816c630a88e79fecfdb7cea1a91eb385",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 229131,
            "upload_time": "2025-10-06T05:37:18",
            "upload_time_iso_8601": "2025-10-06T05:37:18.221948Z",
            "url": "https://files.pythonhosted.org/packages/62/c3/f57a5c8c70cd1ead3d5d5f776f89d33110b1addae0ab010ad774d9a44fb9/frozenlist-1.8.0-cp314-cp314-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c52232476fe9cb64f0742f3fde2b7d26c1dac18b6d62071c74d4ded55e0ef94",
                "md5": "a2feee39c5a4dd11f3e3923a7ebb67f4",
                "sha256": "33f48f51a446114bc5d251fb2954ab0164d5be02ad3382abcbfe07e2531d650f"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a2feee39c5a4dd11f3e3923a7ebb67f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 240542,
            "upload_time": "2025-10-06T05:37:19",
            "upload_time_iso_8601": "2025-10-06T05:37:19.771407Z",
            "url": "https://files.pythonhosted.org/packages/6c/52/232476fe9cb64f0742f3fde2b7d26c1dac18b6d62071c74d4ded55e0ef94/frozenlist-1.8.0-cp314-cp314-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f8507bf3f5d0fb5414aee5f47d33c6f5c77bfe49aac680bfece33d4fdf6a246",
                "md5": "4e22eb99c34ad03fdab1bf1ce2b12e1b",
                "sha256": "154e55ec0655291b5dd1b8731c637ecdb50975a2ae70c606d100750a540082f7"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4e22eb99c34ad03fdab1bf1ce2b12e1b",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 237308,
            "upload_time": "2025-10-06T05:37:20",
            "upload_time_iso_8601": "2025-10-06T05:37:20.969657Z",
            "url": "https://files.pythonhosted.org/packages/5f/85/07bf3f5d0fb5414aee5f47d33c6f5c77bfe49aac680bfece33d4fdf6a246/frozenlist-1.8.0-cp314-cp314-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1199ae3a33d5befd41ac0ca2cc7fd3aa707c9c324de2e89db0e0f45db9a64c26",
                "md5": "fa41aaff2f8b08867eb75729590902b6",
                "sha256": "4314debad13beb564b708b4a496020e5306c7333fa9a3ab90374169a20ffab30"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "fa41aaff2f8b08867eb75729590902b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 238210,
            "upload_time": "2025-10-06T05:37:22",
            "upload_time_iso_8601": "2025-10-06T05:37:22.252613Z",
            "url": "https://files.pythonhosted.org/packages/11/99/ae3a33d5befd41ac0ca2cc7fd3aa707c9c324de2e89db0e0f45db9a64c26/frozenlist-1.8.0-cp314-cp314-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b260b1d2da22f4970e7a155f0adde9b1435712ece01b3cd45ba63702aea33938",
                "md5": "aa657acfdc3ee9849c0b002e8c0e2592",
                "sha256": "073f8bf8becba60aa931eb3bc420b217bb7d5b8f4750e6f8b3be7f3da85d38b7"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa657acfdc3ee9849c0b002e8c0e2592",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 231972,
            "upload_time": "2025-10-06T05:37:23",
            "upload_time_iso_8601": "2025-10-06T05:37:23.500122Z",
            "url": "https://files.pythonhosted.org/packages/b2/60/b1d2da22f4970e7a155f0adde9b1435712ece01b3cd45ba63702aea33938/frozenlist-1.8.0-cp314-cp314-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c0c743200656ecc4e02d3f8bc248df68256cd9572b3f0017f0a0c4e93440ae23",
                "md5": "5265948c35a3739a698f095872fa45a8",
                "sha256": "d3bb933317c52d7ea5004a1c442eef86f426886fba134ef8cf4226ea6ee1821d"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314t-macosx_10_13_universal2.whl",
            "has_sig": false,
            "md5_digest": "5265948c35a3739a698f095872fa45a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 89238,
            "upload_time": "2025-10-06T05:37:29",
            "upload_time_iso_8601": "2025-10-06T05:37:29.373292Z",
            "url": "https://files.pythonhosted.org/packages/c0/c7/43200656ecc4e02d3f8bc248df68256cd9572b3f0017f0a0c4e93440ae23/frozenlist-1.8.0-cp314-cp314t-macosx_10_13_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d12955c5f0689b9c0fb765055629f472c0de484dcaf0acee2f7707266ae3583c",
                "md5": "9243c96c307e24ad340cda7337ca60b3",
                "sha256": "8009897cdef112072f93a0efdce29cd819e717fd2f649ee3016efd3cd885a7ed"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314t-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9243c96c307e24ad340cda7337ca60b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 50738,
            "upload_time": "2025-10-06T05:37:30",
            "upload_time_iso_8601": "2025-10-06T05:37:30.792169Z",
            "url": "https://files.pythonhosted.org/packages/d1/29/55c5f0689b9c0fb765055629f472c0de484dcaf0acee2f7707266ae3583c/frozenlist-1.8.0-cp314-cp314t-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba7db7282a445956506fa11da8c2db7d276adcbf2b17d8bb8407a47685263f90",
                "md5": "8d1421c344dc12a1475193ef9b1b7aaa",
                "sha256": "2c5dcbbc55383e5883246d11fd179782a9d07a986c40f49abe89ddf865913930"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314t-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8d1421c344dc12a1475193ef9b1b7aaa",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 51739,
            "upload_time": "2025-10-06T05:37:32",
            "upload_time_iso_8601": "2025-10-06T05:37:32.127983Z",
            "url": "https://files.pythonhosted.org/packages/ba/7d/b7282a445956506fa11da8c2db7d276adcbf2b17d8bb8407a47685263f90/frozenlist-1.8.0-cp314-cp314t-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "621c3d8622e60d0b767a5510d1d3cf21065b9db874696a51ea6d7a43180a259c",
                "md5": "f3b8ea2fb4d7b6cd1ae46e8cbb8356c3",
                "sha256": "39ecbc32f1390387d2aa4f5a995e465e9e2f79ba3adcac92d68e3e0afae6657c"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f3b8ea2fb4d7b6cd1ae46e8cbb8356c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 284186,
            "upload_time": "2025-10-06T05:37:33",
            "upload_time_iso_8601": "2025-10-06T05:37:33.210202Z",
            "url": "https://files.pythonhosted.org/packages/62/1c/3d8622e60d0b767a5510d1d3cf21065b9db874696a51ea6d7a43180a259c/frozenlist-1.8.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d14aa36d5f85a89679a85a1d44cd7a6657e0b1c75f61e7cad987b203d2daca8",
                "md5": "fea20cabed9be80cce01e31c04688eb6",
                "sha256": "92db2bf818d5cc8d9c1f1fc56b897662e24ea5adb36ad1f1d82875bd64e03c24"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fea20cabed9be80cce01e31c04688eb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 292196,
            "upload_time": "2025-10-06T05:37:36",
            "upload_time_iso_8601": "2025-10-06T05:37:36.107486Z",
            "url": "https://files.pythonhosted.org/packages/2d/14/aa36d5f85a89679a85a1d44cd7a6657e0b1c75f61e7cad987b203d2daca8/frozenlist-1.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05236bde59eb55abd407d34f77d39a5126fb7b4f109a3f611d3929f14b700c66",
                "md5": "d0869d0164eef3c06503cbd7d48bf5b4",
                "sha256": "2dc43a022e555de94c3b68a4ef0b11c4f747d12c024a520c7101709a2144fb37"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d0869d0164eef3c06503cbd7d48bf5b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 273830,
            "upload_time": "2025-10-06T05:37:37",
            "upload_time_iso_8601": "2025-10-06T05:37:37.663198Z",
            "url": "https://files.pythonhosted.org/packages/05/23/6bde59eb55abd407d34f77d39a5126fb7b4f109a3f611d3929f14b700c66/frozenlist-1.8.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d23f22cff331bfad7a8afa616289000ba793347fcd7bc275f3b28ecea2a27909",
                "md5": "df8520570b5b1fefe1f6425c6a40f738",
                "sha256": "cb89a7f2de3602cfed448095bab3f178399646ab7c61454315089787df07733a"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "df8520570b5b1fefe1f6425c6a40f738",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 294289,
            "upload_time": "2025-10-06T05:37:39",
            "upload_time_iso_8601": "2025-10-06T05:37:39.261242Z",
            "url": "https://files.pythonhosted.org/packages/d2/3f/22cff331bfad7a8afa616289000ba793347fcd7bc275f3b28ecea2a27909/frozenlist-1.8.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a4895b057c799de4838b6c69aa82b79705f2027615e01be996d2486a69ca99c4",
                "md5": "7d00ceff5ceefc38b483942eb2a59ae1",
                "sha256": "33139dc858c580ea50e7e60a1b0ea003efa1fd42e6ec7fdbad78fff65fad2fd2"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "7d00ceff5ceefc38b483942eb2a59ae1",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 300318,
            "upload_time": "2025-10-06T05:37:43",
            "upload_time_iso_8601": "2025-10-06T05:37:43.213566Z",
            "url": "https://files.pythonhosted.org/packages/a4/89/5b057c799de4838b6c69aa82b79705f2027615e01be996d2486a69ca99c4/frozenlist-1.8.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30de2c22ab3eb2a8af6d69dc799e48455813bab3690c760de58e1bf43b36da3e",
                "md5": "06f1862d227a18d6f9056ebfc5ea2a23",
                "sha256": "168c0969a329b416119507ba30b9ea13688fafffac1b7822802537569a1cb0ef"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "06f1862d227a18d6f9056ebfc5ea2a23",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 282814,
            "upload_time": "2025-10-06T05:37:45",
            "upload_time_iso_8601": "2025-10-06T05:37:45.337633Z",
            "url": "https://files.pythonhosted.org/packages/30/de/2c22ab3eb2a8af6d69dc799e48455813bab3690c760de58e1bf43b36da3e/frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "59f7970141a6a8dbd7f556d94977858cfb36fa9b66e0892c6dd780d2219d8cd8",
                "md5": "fc808c13af783b07402294ea81d2d819",
                "sha256": "28bd570e8e189d7f7b001966435f9dac6718324b5be2990ac496cf1ea9ddb7fe"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fc808c13af783b07402294ea81d2d819",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 291762,
            "upload_time": "2025-10-06T05:37:46",
            "upload_time_iso_8601": "2025-10-06T05:37:46.657857Z",
            "url": "https://files.pythonhosted.org/packages/59/f7/970141a6a8dbd7f556d94977858cfb36fa9b66e0892c6dd780d2219d8cd8/frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c115ca1adae83a719f82df9116d66f5bb28bb95557b3951903d39135620ef157",
                "md5": "3df0865831c010cbfb7358b3a1da2974",
                "sha256": "b2a095d45c5d46e5e79ba1e5b9cb787f541a8dee0433836cea4b96a2c439dcd8"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "3df0865831c010cbfb7358b3a1da2974",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 289470,
            "upload_time": "2025-10-06T05:37:47",
            "upload_time_iso_8601": "2025-10-06T05:37:47.946377Z",
            "url": "https://files.pythonhosted.org/packages/c1/15/ca1adae83a719f82df9116d66f5bb28bb95557b3951903d39135620ef157/frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac83dca6dc53bf657d371fbc88ddeb21b79891e747189c5de990b9dfff2ccba1",
                "md5": "0f4f8c0330e91e83eb6e9d279b3f60a3",
                "sha256": "eab8145831a0d56ec9c4139b6c3e594c7a83c2c8be25d5bcf2d86136a532287a"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "0f4f8c0330e91e83eb6e9d279b3f60a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 289042,
            "upload_time": "2025-10-06T05:37:49",
            "upload_time_iso_8601": "2025-10-06T05:37:49.499112Z",
            "url": "https://files.pythonhosted.org/packages/ac/83/dca6dc53bf657d371fbc88ddeb21b79891e747189c5de990b9dfff2ccba1/frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9652abddd34ca99be142f354398700536c5bd315880ed0a213812bc491cff5e4",
                "md5": "bbda5c85efc90d3ea2258e88940e7981",
                "sha256": "974b28cf63cc99dfb2188d8d222bc6843656188164848c4f679e63dae4b0708e"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bbda5c85efc90d3ea2258e88940e7981",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 283148,
            "upload_time": "2025-10-06T05:37:50",
            "upload_time_iso_8601": "2025-10-06T05:37:50.745386Z",
            "url": "https://files.pythonhosted.org/packages/96/52/abddd34ca99be142f354398700536c5bd315880ed0a213812bc491cff5e4/frozenlist-1.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "afd376bd4ed4317e7119c2b7f57c3f6934aba26d277acc6309f873341640e21f",
                "md5": "e471d51e907aca1a21eb34caca56b06f",
                "sha256": "342c97bf697ac5480c0a7ec73cd700ecfa5a8a40ac923bd035484616efecc2df"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314t-win32.whl",
            "has_sig": false,
            "md5_digest": "e471d51e907aca1a21eb34caca56b06f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 44676,
            "upload_time": "2025-10-06T05:37:52",
            "upload_time_iso_8601": "2025-10-06T05:37:52.222895Z",
            "url": "https://files.pythonhosted.org/packages/af/d3/76bd4ed4317e7119c2b7f57c3f6934aba26d277acc6309f873341640e21f/frozenlist-1.8.0-cp314-cp314t-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8976c615883b7b521ead2944bb3480398cbb07e12b7b4e4d073d3752eb721558",
                "md5": "190dff70d3aa8027cecd20b3e1d5b03f",
                "sha256": "06be8f67f39c8b1dc671f5d83aaefd3358ae5cdcf8314552c57e7ed3e6475bdd"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314t-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "190dff70d3aa8027cecd20b3e1d5b03f",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 49451,
            "upload_time": "2025-10-06T05:37:53",
            "upload_time_iso_8601": "2025-10-06T05:37:53.425533Z",
            "url": "https://files.pythonhosted.org/packages/89/76/c615883b7b521ead2944bb3480398cbb07e12b7b4e4d073d3752eb721558/frozenlist-1.8.0-cp314-cp314t-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0a35982da14e113d07b325230f95060e2169f5311b1017ea8af2a29b374c289",
                "md5": "33c67eef1824a88304f40a4cff7f5624",
                "sha256": "102e6314ca4da683dca92e3b1355490fed5f313b768500084fbe6371fddfdb79"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314t-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "33c67eef1824a88304f40a4cff7f5624",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 42507,
            "upload_time": "2025-10-06T05:37:54",
            "upload_time_iso_8601": "2025-10-06T05:37:54.513869Z",
            "url": "https://files.pythonhosted.org/packages/e0/a3/5982da14e113d07b325230f95060e2169f5311b1017ea8af2a29b374c289/frozenlist-1.8.0-cp314-cp314t-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3fab945b2f32de889993b9c9133216c068b7fcf257d8595a0ac420ac8677cab0",
                "md5": "068a30ee7b689797fbf4b664ae67605e",
                "sha256": "bac9c42ba2ac65ddc115d930c78d24ab8d4f465fd3fc473cdedfccadb9429806"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314-win32.whl",
            "has_sig": false,
            "md5_digest": "068a30ee7b689797fbf4b664ae67605e",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 40536,
            "upload_time": "2025-10-06T05:37:25",
            "upload_time_iso_8601": "2025-10-06T05:37:25.581364Z",
            "url": "https://files.pythonhosted.org/packages/3f/ab/945b2f32de889993b9c9133216c068b7fcf257d8595a0ac420ac8677cab0/frozenlist-1.8.0-cp314-cp314-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "59ad9caa9b9c836d9ad6f067157a531ac48b7d36499f5036d4141ce78c230b1b",
                "md5": "0dc741b42c8cbdbc9ac73f71e57f6afb",
                "sha256": "3e0761f4d1a44f1d1a47996511752cf3dcec5bbdd9cc2b4fe595caf97754b7a0"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0dc741b42c8cbdbc9ac73f71e57f6afb",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 44330,
            "upload_time": "2025-10-06T05:37:26",
            "upload_time_iso_8601": "2025-10-06T05:37:26.928497Z",
            "url": "https://files.pythonhosted.org/packages/59/ad/9caa9b9c836d9ad6f067157a531ac48b7d36499f5036d4141ce78c230b1b/frozenlist-1.8.0-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8213e6950121764f2676f43534c555249f57030150260aee9dcf7d64efda11dd",
                "md5": "94da93218ba77e3211833184aa6f5125",
                "sha256": "d1eaff1d00c7751b7c6662e9c5ba6eb2c17a2306ba5e2a37f24ddf3cc953402b"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp314-cp314-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "94da93218ba77e3211833184aa6f5125",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": ">=3.9",
            "size": 40627,
            "upload_time": "2025-10-06T05:37:28",
            "upload_time_iso_8601": "2025-10-06T05:37:28.075456Z",
            "url": "https://files.pythonhosted.org/packages/82/13/e6950121764f2676f43534c555249f57030150260aee9dcf7d64efda11dd/frozenlist-1.8.0-cp314-cp314-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c259ae5cdac87a00962122ea37bb346d41b66aec05f9ce328fa2b9e216f8967b",
                "md5": "4e8c00e7a1933e1d8224ed9a4fb19eaf",
                "sha256": "d8b7138e5cd0647e4523d6685b0eac5d4be9a184ae9634492f25c6eb38c12a47"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "4e8c00e7a1933e1d8224ed9a4fb19eaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 86967,
            "upload_time": "2025-10-06T05:37:55",
            "upload_time_iso_8601": "2025-10-06T05:37:55.607664Z",
            "url": "https://files.pythonhosted.org/packages/c2/59/ae5cdac87a00962122ea37bb346d41b66aec05f9ce328fa2b9e216f8967b/frozenlist-1.8.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a1017059b2db5a032fd9323c41c39e9d1f5f9d0c8f04d1e4e3e788573086e61",
                "md5": "e4b45ab232690475b3a7b033f58a85e6",
                "sha256": "a6483e309ca809f1efd154b4d37dc6d9f61037d6c6a81c2dc7a15cb22c8c5dca"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4b45ab232690475b3a7b033f58a85e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 49984,
            "upload_time": "2025-10-06T05:37:57",
            "upload_time_iso_8601": "2025-10-06T05:37:57.049880Z",
            "url": "https://files.pythonhosted.org/packages/8a/10/17059b2db5a032fd9323c41c39e9d1f5f9d0c8f04d1e4e3e788573086e61/frozenlist-1.8.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4bdead9d82ca8e5fa8f0c636e64606553c79e2b859ad253030b62a21fe9986f5",
                "md5": "d43c09d999ef35e5dbf29da59fe9b956",
                "sha256": "1b9290cf81e95e93fdf90548ce9d3c1211cf574b8e3f4b3b7cb0537cf2227068"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d43c09d999ef35e5dbf29da59fe9b956",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 50240,
            "upload_time": "2025-10-06T05:37:58",
            "upload_time_iso_8601": "2025-10-06T05:37:58.145072Z",
            "url": "https://files.pythonhosted.org/packages/4b/de/ad9d82ca8e5fa8f0c636e64606553c79e2b859ad253030b62a21fe9986f5/frozenlist-1.8.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e453dfb7767c2a67d123650122b62ce13c731b6c745bc14424eea67678b508c",
                "md5": "de3a304d032b73752c054a99afab4da6",
                "sha256": "59a6a5876ca59d1b63af8cd5e7ffffb024c3dc1e9cf9301b21a2e76286505c95"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de3a304d032b73752c054a99afab4da6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 219472,
            "upload_time": "2025-10-06T05:37:59",
            "upload_time_iso_8601": "2025-10-06T05:37:59.239175Z",
            "url": "https://files.pythonhosted.org/packages/4e/45/3dfb7767c2a67d123650122b62ce13c731b6c745bc14424eea67678b508c/frozenlist-1.8.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0bbf5bf23d913a741b960d5c1dac7c1985d8a2a1d015772b2d18ea168b08e7ff",
                "md5": "860c58173a181cd55df72ed7a061e8ae",
                "sha256": "6dc4126390929823e2d2d9dc79ab4046ed74680360fc5f38b585c12c66cdf459"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "860c58173a181cd55df72ed7a061e8ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 221531,
            "upload_time": "2025-10-06T05:38:00",
            "upload_time_iso_8601": "2025-10-06T05:38:00.521540Z",
            "url": "https://files.pythonhosted.org/packages/0b/bf/5bf23d913a741b960d5c1dac7c1985d8a2a1d015772b2d18ea168b08e7ff/frozenlist-1.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d00327ec393f3b55860859f4b74cdc8c2a4af3dbf3533305e8eacf48a4fd9a54",
                "md5": "4d0faf3f0a7600b4f062bc0cd8c3b740",
                "sha256": "332db6b2563333c5671fecacd085141b5800cb866be16d5e3eb15a2086476675"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4d0faf3f0a7600b4f062bc0cd8c3b740",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 219211,
            "upload_time": "2025-10-06T05:38:01",
            "upload_time_iso_8601": "2025-10-06T05:38:01.842967Z",
            "url": "https://files.pythonhosted.org/packages/d0/03/27ec393f3b55860859f4b74cdc8c2a4af3dbf3533305e8eacf48a4fd9a54/frozenlist-1.8.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3aad0fd00c404fa73fe9b169429e9a972d5ed807973c40ab6b3cf9365a33d360",
                "md5": "da39ed7085c11184c57c13dc64c4dd21",
                "sha256": "9ff15928d62a0b80bb875655c39bf517938c7d589554cbd2669be42d97c2cb61"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "da39ed7085c11184c57c13dc64c4dd21",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 231775,
            "upload_time": "2025-10-06T05:38:03",
            "upload_time_iso_8601": "2025-10-06T05:38:03.384147Z",
            "url": "https://files.pythonhosted.org/packages/3a/ad/0fd00c404fa73fe9b169429e9a972d5ed807973c40ab6b3cf9365a33d360/frozenlist-1.8.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ac386962566154cb4d2995358bc8331bfc4ea19d07db1a96f64935a1607f2b6",
                "md5": "f1e449773f18c5efde746c5954d0ff6b",
                "sha256": "7bf6cdf8e07c8151fba6fe85735441240ec7f619f935a5205953d58009aef8c6"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "has_sig": false,
            "md5_digest": "f1e449773f18c5efde746c5954d0ff6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 236631,
            "upload_time": "2025-10-06T05:38:04",
            "upload_time_iso_8601": "2025-10-06T05:38:04.609970Z",
            "url": "https://files.pythonhosted.org/packages/8a/c3/86962566154cb4d2995358bc8331bfc4ea19d07db1a96f64935a1607f2b6/frozenlist-1.8.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea9e6ffad161dbd83782d2c66dc4d378a9103b31770cb1e67febf43aea42d202",
                "md5": "5d69b94560878cf88099a06a1a9ca7f3",
                "sha256": "48e6d3f4ec5c7273dfe83ff27c91083c6c9065af655dc2684d2c200c94308bb5"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5d69b94560878cf88099a06a1a9ca7f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 218632,
            "upload_time": "2025-10-06T05:38:05",
            "upload_time_iso_8601": "2025-10-06T05:38:05.917589Z",
            "url": "https://files.pythonhosted.org/packages/ea/9e/6ffad161dbd83782d2c66dc4d378a9103b31770cb1e67febf43aea42d202/frozenlist-1.8.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58b24677eee46e0a97f9b30735e6ad0bf6aba3e497986066eb68807ac85cf60f",
                "md5": "6bfc44515148edef1cb76369d6d366e9",
                "sha256": "1a7607e17ad33361677adcd1443edf6f5da0ce5e5377b798fba20fae194825f3"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp39-cp39-musllinux_1_2_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6bfc44515148edef1cb76369d6d366e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 235967,
            "upload_time": "2025-10-06T05:38:07",
            "upload_time_iso_8601": "2025-10-06T05:38:07.614349Z",
            "url": "https://files.pythonhosted.org/packages/58/b2/4677eee46e0a97f9b30735e6ad0bf6aba3e497986066eb68807ac85cf60f/frozenlist-1.8.0-cp39-cp39-musllinux_1_2_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05f386e75f8639c5a93745ca7addbbc9de6af56aebb930d233512b17e46f6493",
                "md5": "804559e792a629af6d6b509050f44bbb",
                "sha256": "5a3a935c3a4e89c733303a2d5a7c257ea44af3a56c8202df486b7f5de40f37e1"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "804559e792a629af6d6b509050f44bbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 228799,
            "upload_time": "2025-10-06T05:38:08",
            "upload_time_iso_8601": "2025-10-06T05:38:08.845285Z",
            "url": "https://files.pythonhosted.org/packages/05/f3/86e75f8639c5a93745ca7addbbc9de6af56aebb930d233512b17e46f6493/frozenlist-1.8.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "300039aad3a7f0d98f5eb1d99a3c311215674ed87061aecee7851974b335c050",
                "md5": "f233efaec29649cb2e0f4bc0ea0ef295",
                "sha256": "940d4a017dbfed9daf46a3b086e1d2167e7012ee297fef9e1c545c4d022f5178"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp39-cp39-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "f233efaec29649cb2e0f4bc0ea0ef295",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 230566,
            "upload_time": "2025-10-06T05:38:10",
            "upload_time_iso_8601": "2025-10-06T05:38:10.520690Z",
            "url": "https://files.pythonhosted.org/packages/30/00/39aad3a7f0d98f5eb1d99a3c311215674ed87061aecee7851974b335c050/frozenlist-1.8.0-cp39-cp39-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d4daa144cac44568d137846ddc4d5210fb5d9719eb1d7ec6fa2728a54b5b94a",
                "md5": "3f6c2123ce69ff01c79df77a6b4dca65",
                "sha256": "b9be22a69a014bc47e78072d0ecae716f5eb56c15238acca0f43d6eb8e4a5bda"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3f6c2123ce69ff01c79df77a6b4dca65",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 217715,
            "upload_time": "2025-10-06T05:38:11",
            "upload_time_iso_8601": "2025-10-06T05:38:11.832151Z",
            "url": "https://files.pythonhosted.org/packages/0d/4d/aa144cac44568d137846ddc4d5210fb5d9719eb1d7ec6fa2728a54b5b94a/frozenlist-1.8.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "644c8f665921667509d25a0dd72540513bc86b356c95541686f6442a3283019f",
                "md5": "9641d9c6c982e82fe84355d6911313c7",
                "sha256": "1aa77cb5697069af47472e39612976ed05343ff2e84a3dcf15437b232cbfd087"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "9641d9c6c982e82fe84355d6911313c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 39933,
            "upload_time": "2025-10-06T05:38:13",
            "upload_time_iso_8601": "2025-10-06T05:38:13.061697Z",
            "url": "https://files.pythonhosted.org/packages/64/4c/8f665921667509d25a0dd72540513bc86b356c95541686f6442a3283019f/frozenlist-1.8.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79bdbcc926f87027fad5e59926ff12d136e1082a115025d33c032d1cd69ab377",
                "md5": "ffe727c157564a6d0427e0abdfdf0d0b",
                "sha256": "7398c222d1d405e796970320036b1b563892b65809d9e5261487bb2c7f7b5c6a"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ffe727c157564a6d0427e0abdfdf0d0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 44121,
            "upload_time": "2025-10-06T05:38:14",
            "upload_time_iso_8601": "2025-10-06T05:38:14.572892Z",
            "url": "https://files.pythonhosted.org/packages/79/bd/bcc926f87027fad5e59926ff12d136e1082a115025d33c032d1cd69ab377/frozenlist-1.8.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c079c2e4eb7584af4b705237b971b89a4155a8e57599c4483a131a39256a9a0",
                "md5": "ba76a8b4bc9b9107d39afa48df806260",
                "sha256": "b4f3b365f31c6cd4af24545ca0a244a53688cad8834e32f56831c4923b50a103"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "ba76a8b4bc9b9107d39afa48df806260",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 40312,
            "upload_time": "2025-10-06T05:38:15",
            "upload_time_iso_8601": "2025-10-06T05:38:15.699498Z",
            "url": "https://files.pythonhosted.org/packages/4c/07/9c2e4eb7584af4b705237b971b89a4155a8e57599c4483a131a39256a9a0/frozenlist-1.8.0-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a9ae35b4a917281c0b8419d4207f4334c8e8c5dbf4f3f5f9ada73958d937dcc",
                "md5": "5ff01f10f03e58e82aa162194f616f44",
                "sha256": "0c18a16eab41e82c295618a77502e17b195883241c563b00f0aa5106fc4eaa0d"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5ff01f10f03e58e82aa162194f616f44",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 13409,
            "upload_time": "2025-10-06T05:38:16",
            "upload_time_iso_8601": "2025-10-06T05:38:16.721242Z",
            "url": "https://files.pythonhosted.org/packages/9a/9a/e35b4a917281c0b8419d4207f4334c8e8c5dbf4f3f5f9ada73958d937dcc/frozenlist-1.8.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2df5c831fac6cc817d26fd54c7eaccd04ef7e0288806943f7cc5bbf69f3ac1f0",
                "md5": "3d8350ebe62603b7be5f516292c7aa6c",
                "sha256": "3ede829ed8d842f6cd48fc7081d7a41001a56f1f38603f9d49bf3020d59a31ad"
            },
            "downloads": -1,
            "filename": "frozenlist-1.8.0.tar.gz",
            "has_sig": false,
            "md5_digest": "3d8350ebe62603b7be5f516292c7aa6c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 45875,
            "upload_time": "2025-10-06T05:38:17",
            "upload_time_iso_8601": "2025-10-06T05:38:17.865026Z",
            "url": "https://files.pythonhosted.org/packages/2d/f5/c831fac6cc817d26fd54c7eaccd04ef7e0288806943f7cc5bbf69f3ac1f0/frozenlist-1.8.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-06 05:38:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "aio-libs",
    "github_project": "frozenlist",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "tox": true,
    "lcname": "frozenlist"
}
        
Elapsed time: 1.49920s