Name | frozenlist JSON |
Version |
1.5.0
JSON |
| download |
home_page | https://github.com/aio-libs/frozenlist |
Summary | A list-like structure which implements collections.abc.MutableSequence |
upload_time | 2024-10-23 09:48:29 |
maintainer | aiohttp team <team@aiohttp.org> |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | Apache 2 |
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
:target: https://codecov.io/gh/aio-libs/frozenlist
: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
The library requires Python 3.8 or newer.
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.
Requirements
------------
- Python >= 3.8
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
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.8",
"maintainer_email": "team@aiohttp.org",
"keywords": null,
"author": null,
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/8f/ed/0f4cec13a93c02c47ec32d81d11c0c1efbadf4a471e3f3ce7cad366cbbd3/frozenlist-1.5.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\n :target: https://codecov.io/gh/aio-libs/frozenlist\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\nThe library requires Python 3.8 or newer.\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\nRequirements\n------------\n\n- Python >= 3.8\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\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",
"summary": "A list-like structure which implements collections.abc.MutableSequence",
"version": "1.5.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": "",
"digests": {
"blake2b_256": "547929d44c4af36b2b240725dce566b20f63f9b36ef267aaaa64ee7466f4f2f8",
"md5": "92b0423420c8b980001b0bb69de6346d",
"sha256": "5b6a66c18b5b9dd261ca98dffcb826a525334b2f29e7caa54e182255c5f6a65a"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "92b0423420c8b980001b0bb69de6346d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 94451,
"upload_time": "2024-10-23T09:46:20",
"upload_time_iso_8601": "2024-10-23T09:46:20.558541Z",
"url": "https://files.pythonhosted.org/packages/54/79/29d44c4af36b2b240725dce566b20f63f9b36ef267aaaa64ee7466f4f2f8/frozenlist-1.5.0-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "47470c999aeace6ead8a44441b4f4173e2261b18219e4ad1fe9a479871ca02fc",
"md5": "82c652d07950142746ebce54400be4ce",
"sha256": "d1b3eb7b05ea246510b43a7e53ed1653e55c2121019a97e60cad7efb881a97bb"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "82c652d07950142746ebce54400be4ce",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 54301,
"upload_time": "2024-10-23T09:46:21",
"upload_time_iso_8601": "2024-10-23T09:46:21.759292Z",
"url": "https://files.pythonhosted.org/packages/47/47/0c999aeace6ead8a44441b4f4173e2261b18219e4ad1fe9a479871ca02fc/frozenlist-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d60107a38c1e54176d12e06e9d4b5d755b677d71d1219217cee063911b1384f",
"md5": "36b3654a09cd1cfc2b55b343ea8a45a4",
"sha256": "15538c0cbf0e4fa11d1e3a71f823524b0c46299aed6e10ebb4c2089abd8c3bec"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "36b3654a09cd1cfc2b55b343ea8a45a4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 52213,
"upload_time": "2024-10-23T09:46:22",
"upload_time_iso_8601": "2024-10-23T09:46:22.993549Z",
"url": "https://files.pythonhosted.org/packages/8d/60/107a38c1e54176d12e06e9d4b5d755b677d71d1219217cee063911b1384f/frozenlist-1.5.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1762594a6829ac5679c25755362a9dc93486a8a45241394564309641425d3ff6",
"md5": "d7b1ea948ac42db469afe7045e21aa86",
"sha256": "e79225373c317ff1e35f210dd5f1344ff31066ba8067c307ab60254cd3a78ad5"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d7b1ea948ac42db469afe7045e21aa86",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 240946,
"upload_time": "2024-10-23T09:46:24",
"upload_time_iso_8601": "2024-10-23T09:46:24.661264Z",
"url": "https://files.pythonhosted.org/packages/17/62/594a6829ac5679c25755362a9dc93486a8a45241394564309641425d3ff6/frozenlist-1.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7e756c8419d8f92c80dd0ee3f63bdde2702ce6398b0ac8410ff459f9b6f2f9cb",
"md5": "111b79126b96b71584dbd0032557b200",
"sha256": "9272fa73ca71266702c4c3e2d4a28553ea03418e591e377a03b8e3659d94fa76"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "111b79126b96b71584dbd0032557b200",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 264608,
"upload_time": "2024-10-23T09:46:26",
"upload_time_iso_8601": "2024-10-23T09:46:26.017795Z",
"url": "https://files.pythonhosted.org/packages/7e/75/6c8419d8f92c80dd0ee3f63bdde2702ce6398b0ac8410ff459f9b6f2f9cb/frozenlist-1.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "883e82a6f0b84bc6fb7e0be240e52863c6d4ab6098cd62e4f5b972cd31e002e8",
"md5": "3885b316d88beb87b84285ceb8651de7",
"sha256": "498524025a5b8ba81695761d78c8dd7382ac0b052f34e66939c42df860b8ff17"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "3885b316d88beb87b84285ceb8651de7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 261361,
"upload_time": "2024-10-23T09:46:27",
"upload_time_iso_8601": "2024-10-23T09:46:27.787529Z",
"url": "https://files.pythonhosted.org/packages/88/3e/82a6f0b84bc6fb7e0be240e52863c6d4ab6098cd62e4f5b972cd31e002e8/frozenlist-1.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fd8514e5f9ccac1b64ff2f10c927b3ffdf88772aea875882406f9ba0cec8ad84",
"md5": "e5048d47d90e15fac05a4e107b9fe17e",
"sha256": "92b5278ed9d50fe610185ecd23c55d8b307d75ca18e94c0e7de328089ac5dcba"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e5048d47d90e15fac05a4e107b9fe17e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 231649,
"upload_time": "2024-10-23T09:46:28",
"upload_time_iso_8601": "2024-10-23T09:46:28.992997Z",
"url": "https://files.pythonhosted.org/packages/fd/85/14e5f9ccac1b64ff2f10c927b3ffdf88772aea875882406f9ba0cec8ad84/frozenlist-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ee59928322800306f6529d1852323014ee9008551e9bb027cc38d276cbc0b0e7",
"md5": "a6beb7a4ab73b023804e37fc2a1842ec",
"sha256": "7f3c8c1dacd037df16e85227bac13cca58c30da836c6f936ba1df0c05d046d8d"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "a6beb7a4ab73b023804e37fc2a1842ec",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 241853,
"upload_time": "2024-10-23T09:46:30",
"upload_time_iso_8601": "2024-10-23T09:46:30.211714Z",
"url": "https://files.pythonhosted.org/packages/ee/59/928322800306f6529d1852323014ee9008551e9bb027cc38d276cbc0b0e7/frozenlist-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7dbde01fa4f146a6f6c18c5d34cab8abdc4013774a26c4ff851128cd1bd3008e",
"md5": "30b63903780da9c8ba63c3ceff2cd420",
"sha256": "f2ac49a9bedb996086057b75bf93538240538c6d9b38e57c82d51f75a73409d2"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "30b63903780da9c8ba63c3ceff2cd420",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 243652,
"upload_time": "2024-10-23T09:46:31",
"upload_time_iso_8601": "2024-10-23T09:46:31.758725Z",
"url": "https://files.pythonhosted.org/packages/7d/bd/e01fa4f146a6f6c18c5d34cab8abdc4013774a26c4ff851128cd1bd3008e/frozenlist-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a5bde4771fd18a8ec6757033f0fa903e447aecc3fbba54e3630397b61596acf0",
"md5": "a406afd270f299df3ba4c5cb4f3f6905",
"sha256": "e66cc454f97053b79c2ab09c17fbe3c825ea6b4de20baf1be28919460dd7877f"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a406afd270f299df3ba4c5cb4f3f6905",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 241734,
"upload_time": "2024-10-23T09:46:33",
"upload_time_iso_8601": "2024-10-23T09:46:33.044745Z",
"url": "https://files.pythonhosted.org/packages/a5/bd/e4771fd18a8ec6757033f0fa903e447aecc3fbba54e3630397b61596acf0/frozenlist-1.5.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2113c83821fa5544af4f60c5d3a65d054af3213c26b14d3f5f48e43e5fb48556",
"md5": "dd59d5d2a50a7688cd043a5f122edabd",
"sha256": "5a3ba5f9a0dfed20337d3e966dc359784c9f96503674c2faf015f7fe8e96798c"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "dd59d5d2a50a7688cd043a5f122edabd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 260959,
"upload_time": "2024-10-23T09:46:34",
"upload_time_iso_8601": "2024-10-23T09:46:34.916154Z",
"url": "https://files.pythonhosted.org/packages/21/13/c83821fa5544af4f60c5d3a65d054af3213c26b14d3f5f48e43e5fb48556/frozenlist-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "71f31f91c9a9bf7ed0e8edcf52698d23f3c211d8d00291a53c9f115ceb977ab1",
"md5": "1f67671a44db506e3c89077d2658ca2d",
"sha256": "6321899477db90bdeb9299ac3627a6a53c7399c8cd58d25da094007402b039ab"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "1f67671a44db506e3c89077d2658ca2d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 262706,
"upload_time": "2024-10-23T09:46:36",
"upload_time_iso_8601": "2024-10-23T09:46:36.159588Z",
"url": "https://files.pythonhosted.org/packages/71/f3/1f91c9a9bf7ed0e8edcf52698d23f3c211d8d00291a53c9f115ceb977ab1/frozenlist-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c224a256fdf5d9bcb3ae32622c796ee5ff9451b3a13a68cfe3f68e2c95588ce",
"md5": "c49424de1a727581629bafb15cf88da9",
"sha256": "76e4753701248476e6286f2ef492af900ea67d9706a0155335a40ea21bf3b2f5"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "c49424de1a727581629bafb15cf88da9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 250401,
"upload_time": "2024-10-23T09:46:37",
"upload_time_iso_8601": "2024-10-23T09:46:37.327540Z",
"url": "https://files.pythonhosted.org/packages/4c/22/4a256fdf5d9bcb3ae32622c796ee5ff9451b3a13a68cfe3f68e2c95588ce/frozenlist-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af89c48ebe1f7991bd2be6d5f4ed202d94960c01b3017a03d6954dd5fa9ea1e8",
"md5": "9d6a5cdef2c8539243e9c6f81a5e1b80",
"sha256": "977701c081c0241d0955c9586ffdd9ce44f7a7795df39b9151cd9a6fd0ce4cfb"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "9d6a5cdef2c8539243e9c6f81a5e1b80",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 45498,
"upload_time": "2024-10-23T09:46:38",
"upload_time_iso_8601": "2024-10-23T09:46:38.552719Z",
"url": "https://files.pythonhosted.org/packages/af/89/c48ebe1f7991bd2be6d5f4ed202d94960c01b3017a03d6954dd5fa9ea1e8/frozenlist-1.5.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "282fcc27d5f43e023d21fe5c19538e08894db3d7e081cbf582ad5ed366c24446",
"md5": "6f332787351afbf75a61aeac249d6fd5",
"sha256": "189f03b53e64144f90990d29a27ec4f7997d91ed3d01b51fa39d2dbe77540fd4"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "6f332787351afbf75a61aeac249d6fd5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 51622,
"upload_time": "2024-10-23T09:46:39",
"upload_time_iso_8601": "2024-10-23T09:46:39.513253Z",
"url": "https://files.pythonhosted.org/packages/28/2f/cc27d5f43e023d21fe5c19538e08894db3d7e081cbf582ad5ed366c24446/frozenlist-1.5.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79430bed28bf5eb1c9e4301003b74453b8e7aa85fb293b31dde352aac528dafc",
"md5": "93d1bbf8fbb81e0f900804dffe700c90",
"sha256": "fd74520371c3c4175142d02a976aee0b4cb4a7cc912a60586ffd8d5929979b30"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "93d1bbf8fbb81e0f900804dffe700c90",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 94987,
"upload_time": "2024-10-23T09:46:40",
"upload_time_iso_8601": "2024-10-23T09:46:40.487931Z",
"url": "https://files.pythonhosted.org/packages/79/43/0bed28bf5eb1c9e4301003b74453b8e7aa85fb293b31dde352aac528dafc/frozenlist-1.5.0-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bbbfb74e38f09a246e8abbe1e90eb65787ed745ccab6eaa58b9c9308e052323d",
"md5": "83eae963024bd1b218293d856cca3e45",
"sha256": "2f3f7a0fbc219fb4455264cae4d9f01ad41ae6ee8524500f381de64ffaa077d5"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "83eae963024bd1b218293d856cca3e45",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 54584,
"upload_time": "2024-10-23T09:46:41",
"upload_time_iso_8601": "2024-10-23T09:46:41.463528Z",
"url": "https://files.pythonhosted.org/packages/bb/bf/b74e38f09a246e8abbe1e90eb65787ed745ccab6eaa58b9c9308e052323d/frozenlist-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c31ab01375682f14f7613a1ade30149f684c84f9b8823a4391ed950c8285656",
"md5": "65dc2142dd968b5ea6ac53cf18e06e95",
"sha256": "f47c9c9028f55a04ac254346e92977bf0f166c483c74b4232bee19a6697e4778"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "65dc2142dd968b5ea6ac53cf18e06e95",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 52499,
"upload_time": "2024-10-23T09:46:42",
"upload_time_iso_8601": "2024-10-23T09:46:42.451789Z",
"url": "https://files.pythonhosted.org/packages/2c/31/ab01375682f14f7613a1ade30149f684c84f9b8823a4391ed950c8285656/frozenlist-1.5.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "98a8d0ac0b9276e1404f58fec3ab6e90a4f76b778a49373ccaf6a563f100dfbc",
"md5": "0c52b0811506bb244773085cfe7d7bb8",
"sha256": "0996c66760924da6e88922756d99b47512a71cfd45215f3570bf1e0b694c206a"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0c52b0811506bb244773085cfe7d7bb8",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 276357,
"upload_time": "2024-10-23T09:46:44",
"upload_time_iso_8601": "2024-10-23T09:46:44.166991Z",
"url": "https://files.pythonhosted.org/packages/98/a8/d0ac0b9276e1404f58fec3ab6e90a4f76b778a49373ccaf6a563f100dfbc/frozenlist-1.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "adc9c7761084fa822f07dac38ac29f841d4587570dd211e2262544aa0b791d21",
"md5": "a346cfde4d242d9654b204399dda374f",
"sha256": "a2fe128eb4edeabe11896cb6af88fca5346059f6c8d807e3b910069f39157869"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "a346cfde4d242d9654b204399dda374f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 287516,
"upload_time": "2024-10-23T09:46:45",
"upload_time_iso_8601": "2024-10-23T09:46:45.369405Z",
"url": "https://files.pythonhosted.org/packages/ad/c9/c7761084fa822f07dac38ac29f841d4587570dd211e2262544aa0b791d21/frozenlist-1.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1ffcd7479e703c39df7bdab431798cef89dc75010d8aa0ca2514c5b9321db27",
"md5": "e3fda82a05297af7fee4eb9e71bfd0fb",
"sha256": "1a8ea951bbb6cacd492e3948b8da8c502a3f814f5d20935aae74b5df2b19cf3d"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e3fda82a05297af7fee4eb9e71bfd0fb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 283131,
"upload_time": "2024-10-23T09:46:46",
"upload_time_iso_8601": "2024-10-23T09:46:46.654507Z",
"url": "https://files.pythonhosted.org/packages/a1/ff/cd7479e703c39df7bdab431798cef89dc75010d8aa0ca2514c5b9321db27/frozenlist-1.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "59a0370941beb47d237eca4fbf27e4e91389fd68699e6f4b0ebcc95da463835b",
"md5": "556d67ca064e6aaa0953f1a3c4c11861",
"sha256": "de537c11e4aa01d37db0d403b57bd6f0546e71a82347a97c6a9f0dcc532b3a45"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "556d67ca064e6aaa0953f1a3c4c11861",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 261320,
"upload_time": "2024-10-23T09:46:47",
"upload_time_iso_8601": "2024-10-23T09:46:47.825818Z",
"url": "https://files.pythonhosted.org/packages/59/a0/370941beb47d237eca4fbf27e4e91389fd68699e6f4b0ebcc95da463835b/frozenlist-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b85fc10123e8d64867bc9b4f2f510a32042a306ff5fcd7e2e09e5ae5100ee333",
"md5": "9e2ecd0dbe910f6dcee23d8b7fc90ff3",
"sha256": "9c2623347b933fcb9095841f1cc5d4ff0b278addd743e0e966cb3d460278840d"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9e2ecd0dbe910f6dcee23d8b7fc90ff3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 274877,
"upload_time": "2024-10-23T09:46:48",
"upload_time_iso_8601": "2024-10-23T09:46:48.989396Z",
"url": "https://files.pythonhosted.org/packages/b8/5f/c10123e8d64867bc9b4f2f510a32042a306ff5fcd7e2e09e5ae5100ee333/frozenlist-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fa7938c505601ae29d4348f21706c5d89755ceded02a745016ba2f58bd5f1ea6",
"md5": "0a29b4a6e0ab4483182fa1e7f7545367",
"sha256": "cee6798eaf8b1416ef6909b06f7dc04b60755206bddc599f52232606e18179d3"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "0a29b4a6e0ab4483182fa1e7f7545367",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 269592,
"upload_time": "2024-10-23T09:46:50",
"upload_time_iso_8601": "2024-10-23T09:46:50.235096Z",
"url": "https://files.pythonhosted.org/packages/fa/79/38c505601ae29d4348f21706c5d89755ceded02a745016ba2f58bd5f1ea6/frozenlist-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19e239f3a53191b8204ba9f0bb574b926b73dd2efba2a2b9d2d730517e8f7622",
"md5": "c32db0d5b91f05d35be94b5bb01235d5",
"sha256": "f5f9da7f5dbc00a604fe74aa02ae7c98bcede8a3b8b9666f9f86fc13993bc71a"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "c32db0d5b91f05d35be94b5bb01235d5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 265934,
"upload_time": "2024-10-23T09:46:51",
"upload_time_iso_8601": "2024-10-23T09:46:51.829799Z",
"url": "https://files.pythonhosted.org/packages/19/e2/39f3a53191b8204ba9f0bb574b926b73dd2efba2a2b9d2d730517e8f7622/frozenlist-1.5.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d5c93075eb7f7f3a91f1a6b00284af4de0a65a9ae47084930916f5528144c9dd",
"md5": "05dc96aadf8c273849526b7a2112c3ee",
"sha256": "90646abbc7a5d5c7c19461d2e3eeb76eb0b204919e6ece342feb6032c9325ae9"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "05dc96aadf8c273849526b7a2112c3ee",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 283859,
"upload_time": "2024-10-23T09:46:52",
"upload_time_iso_8601": "2024-10-23T09:46:52.947309Z",
"url": "https://files.pythonhosted.org/packages/d5/c9/3075eb7f7f3a91f1a6b00284af4de0a65a9ae47084930916f5528144c9dd/frozenlist-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "05f5549f44d314c29408b962fa2b0e69a1a67c59379fb143b92a0a065ffd1f0f",
"md5": "a3afd3135b2c9f89107e5905e41b7b25",
"sha256": "bdac3c7d9b705d253b2ce370fde941836a5f8b3c5c2b8fd70940a3ea3af7f4f2"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "a3afd3135b2c9f89107e5905e41b7b25",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 287560,
"upload_time": "2024-10-23T09:46:54",
"upload_time_iso_8601": "2024-10-23T09:46:54.162133Z",
"url": "https://files.pythonhosted.org/packages/05/f5/549f44d314c29408b962fa2b0e69a1a67c59379fb143b92a0a065ffd1f0f/frozenlist-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9df8cb09b3c24a3eac02c4c07a9558e11e9e244fb02bf62c85ac2106d1eb0c0b",
"md5": "41a3aab79033faf0dde67f63ea555a97",
"sha256": "03d33c2ddbc1816237a67f66336616416e2bbb6beb306e5f890f2eb22b959cdf"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "41a3aab79033faf0dde67f63ea555a97",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 277150,
"upload_time": "2024-10-23T09:46:55",
"upload_time_iso_8601": "2024-10-23T09:46:55.361942Z",
"url": "https://files.pythonhosted.org/packages/9d/f8/cb09b3c24a3eac02c4c07a9558e11e9e244fb02bf62c85ac2106d1eb0c0b/frozenlist-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "374838c2db3f54d1501e692d6fe058f45b6ad1b358d82cd19436efab80cfc965",
"md5": "a39dbf38e19966e2950cef4014b91e3d",
"sha256": "237f6b23ee0f44066219dae14c70ae38a63f0440ce6750f868ee08775073f942"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "a39dbf38e19966e2950cef4014b91e3d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 45244,
"upload_time": "2024-10-23T09:46:56",
"upload_time_iso_8601": "2024-10-23T09:46:56.578022Z",
"url": "https://files.pythonhosted.org/packages/37/48/38c2db3f54d1501e692d6fe058f45b6ad1b358d82cd19436efab80cfc965/frozenlist-1.5.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ca8c2ddffeb8b60a4bce3b196c32fcc30d8830d4615e7b492ec2071da801b8ad",
"md5": "9a8d107bc28c89c93073ee1687a94760",
"sha256": "0cc974cc93d32c42e7b0f6cf242a6bd941c57c61b618e78b6c0a96cb72788c1d"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "9a8d107bc28c89c93073ee1687a94760",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 51634,
"upload_time": "2024-10-23T09:46:57",
"upload_time_iso_8601": "2024-10-23T09:46:57.600376Z",
"url": "https://files.pythonhosted.org/packages/ca/8c/2ddffeb8b60a4bce3b196c32fcc30d8830d4615e7b492ec2071da801b8ad/frozenlist-1.5.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7973fa6d1a96ab7fd6e6d1c3500700963eab46813847f01ef0ccbaa726181dd5",
"md5": "f754e3fa598f6cf79ae351b7a6926634",
"sha256": "31115ba75889723431aa9a4e77d5f398f5cf976eea3bdf61749731f62d4a4a21"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "f754e3fa598f6cf79ae351b7a6926634",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 94026,
"upload_time": "2024-10-23T09:46:58",
"upload_time_iso_8601": "2024-10-23T09:46:58.601349Z",
"url": "https://files.pythonhosted.org/packages/79/73/fa6d1a96ab7fd6e6d1c3500700963eab46813847f01ef0ccbaa726181dd5/frozenlist-1.5.0-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab04ea8bf62c8868b8eada363f20ff1b647cf2e93377a7b284d36062d21d81d1",
"md5": "bdf17692aa0900979aa0a73b697c70a2",
"sha256": "7437601c4d89d070eac8323f121fcf25f88674627505334654fd027b091db09d"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "bdf17692aa0900979aa0a73b697c70a2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 54150,
"upload_time": "2024-10-23T09:46:59",
"upload_time_iso_8601": "2024-10-23T09:46:59.608615Z",
"url": "https://files.pythonhosted.org/packages/ab/04/ea8bf62c8868b8eada363f20ff1b647cf2e93377a7b284d36062d21d81d1/frozenlist-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d09a8e479b482a6f2070b26bda572c5e6889bb3ba48977e81beea35b5ae13ece",
"md5": "72e4d7466001c50b304848e4bcd19f22",
"sha256": "7948140d9f8ece1745be806f2bfdf390127cf1a763b925c4a805c603df5e697e"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "72e4d7466001c50b304848e4bcd19f22",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 51927,
"upload_time": "2024-10-23T09:47:00",
"upload_time_iso_8601": "2024-10-23T09:47:00.625779Z",
"url": "https://files.pythonhosted.org/packages/d0/9a/8e479b482a6f2070b26bda572c5e6889bb3ba48977e81beea35b5ae13ece/frozenlist-1.5.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3122aad87deb08a4e7ccfb33600871bbe8f0e08cb6d8224371387f3303654d7",
"md5": "886deec46ee4f1677926a8946455acd5",
"sha256": "feeb64bc9bcc6b45c6311c9e9b99406660a9c05ca8a5b30d14a78555088b0b3a"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "886deec46ee4f1677926a8946455acd5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 282647,
"upload_time": "2024-10-23T09:47:01",
"upload_time_iso_8601": "2024-10-23T09:47:01.992677Z",
"url": "https://files.pythonhosted.org/packages/e3/12/2aad87deb08a4e7ccfb33600871bbe8f0e08cb6d8224371387f3303654d7/frozenlist-1.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77f207f06b05d8a427ea0060a9cef6e63405ea9e0d761846b95ef3fb3be57111",
"md5": "fae3a53f1deb7131abca0f31ef2841c8",
"sha256": "683173d371daad49cffb8309779e886e59c2f369430ad28fe715f66d08d4ab1a"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "fae3a53f1deb7131abca0f31ef2841c8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 289052,
"upload_time": "2024-10-23T09:47:04",
"upload_time_iso_8601": "2024-10-23T09:47:04.039653Z",
"url": "https://files.pythonhosted.org/packages/77/f2/07f06b05d8a427ea0060a9cef6e63405ea9e0d761846b95ef3fb3be57111/frozenlist-1.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd9f8bf45a2f1cd4aa401acd271b077989c9267ae8463e7c8b1eb0d3f561b65e",
"md5": "e39866d6a2cc6c4659e1d572e5f1d172",
"sha256": "7d57d8f702221405a9d9b40f9da8ac2e4a1a8b5285aac6100f3393675f0a85ee"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e39866d6a2cc6c4659e1d572e5f1d172",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 291719,
"upload_time": "2024-10-23T09:47:05",
"upload_time_iso_8601": "2024-10-23T09:47:05.580459Z",
"url": "https://files.pythonhosted.org/packages/bd/9f/8bf45a2f1cd4aa401acd271b077989c9267ae8463e7c8b1eb0d3f561b65e/frozenlist-1.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "41d11f20fd05a6c42d3868709b7604c9f15538a29e4f734c694c6bcfc3d3b935",
"md5": "1a398ac480c81582a2101741242f7ed7",
"sha256": "30c72000fbcc35b129cb09956836c7d7abf78ab5416595e4857d1cae8d6251a6"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1a398ac480c81582a2101741242f7ed7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 267433,
"upload_time": "2024-10-23T09:47:07",
"upload_time_iso_8601": "2024-10-23T09:47:07.807856Z",
"url": "https://files.pythonhosted.org/packages/41/d1/1f20fd05a6c42d3868709b7604c9f15538a29e4f734c694c6bcfc3d3b935/frozenlist-1.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aff264b73a9bb86f5a89fb55450e97cd5c1f84a862d4ff90d9fd1a73ab0f64a5",
"md5": "8f47adb27971a75d6f866c04b1ce150c",
"sha256": "000a77d6034fbad9b6bb880f7ec073027908f1b40254b5d6f26210d2dab1240e"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8f47adb27971a75d6f866c04b1ce150c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 283591,
"upload_time": "2024-10-23T09:47:09",
"upload_time_iso_8601": "2024-10-23T09:47:09.645412Z",
"url": "https://files.pythonhosted.org/packages/af/f2/64b73a9bb86f5a89fb55450e97cd5c1f84a862d4ff90d9fd1a73ab0f64a5/frozenlist-1.5.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "29e2ffbb1fae55a791fd6c2938dd9ea779509c977435ba3940b9f2e8dc9d5316",
"md5": "ac784418325824d1fa6794d8c4b1cf6a",
"sha256": "5d7f5a50342475962eb18b740f3beecc685a15b52c91f7d975257e13e029eca9"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ac784418325824d1fa6794d8c4b1cf6a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 273249,
"upload_time": "2024-10-23T09:47:10",
"upload_time_iso_8601": "2024-10-23T09:47:10.808401Z",
"url": "https://files.pythonhosted.org/packages/29/e2/ffbb1fae55a791fd6c2938dd9ea779509c977435ba3940b9f2e8dc9d5316/frozenlist-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e6e008136a30798bb63618a114b9321b5971172a5abddff44a100c7edc5ad4f",
"md5": "329f377e01399b7520bcfa0280e5377e",
"sha256": "87f724d055eb4785d9be84e9ebf0f24e392ddfad00b3fe036e43f489fafc9039"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "329f377e01399b7520bcfa0280e5377e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 271075,
"upload_time": "2024-10-23T09:47:11",
"upload_time_iso_8601": "2024-10-23T09:47:11.938089Z",
"url": "https://files.pythonhosted.org/packages/2e/6e/008136a30798bb63618a114b9321b5971172a5abddff44a100c7edc5ad4f/frozenlist-1.5.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aef04e71e54a026b06724cec9b6c54f0b13a4e9e298cc8db0f82ec70e151f5ce",
"md5": "9b0438c65d0be1d937197db1cdb638f6",
"sha256": "6e9080bb2fb195a046e5177f10d9d82b8a204c0736a97a153c2466127de87784"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "9b0438c65d0be1d937197db1cdb638f6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 285398,
"upload_time": "2024-10-23T09:47:14",
"upload_time_iso_8601": "2024-10-23T09:47:14.071416Z",
"url": "https://files.pythonhosted.org/packages/ae/f0/4e71e54a026b06724cec9b6c54f0b13a4e9e298cc8db0f82ec70e151f5ce/frozenlist-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d3670ec246851478b1c0b59f11ef8ade9c482ff447c1363c2bd5fad45098b12",
"md5": "20613ebf1cff4b296e9c88175e84ca96",
"sha256": "9b93d7aaa36c966fa42efcaf716e6b3900438632a626fb09c049f6a2f09fc631"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "20613ebf1cff4b296e9c88175e84ca96",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 294445,
"upload_time": "2024-10-23T09:47:15",
"upload_time_iso_8601": "2024-10-23T09:47:15.318036Z",
"url": "https://files.pythonhosted.org/packages/4d/36/70ec246851478b1c0b59f11ef8ade9c482ff447c1363c2bd5fad45098b12/frozenlist-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "37e047f87544055b3349b633a03c4d94b405956cf2437f4ab46d0928b74b7526",
"md5": "f616e569e6a928f8304d2cba2c716055",
"sha256": "52ef692a4bc60a6dd57f507429636c2af8b6046db8b31b18dac02cbc8f507f7f"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f616e569e6a928f8304d2cba2c716055",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 280569,
"upload_time": "2024-10-23T09:47:17",
"upload_time_iso_8601": "2024-10-23T09:47:17.149102Z",
"url": "https://files.pythonhosted.org/packages/37/e0/47f87544055b3349b633a03c4d94b405956cf2437f4ab46d0928b74b7526/frozenlist-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f97c490133c160fb6b84ed374c266f42800e33b50c3bbab1652764e6e1fc498a",
"md5": "80ecad83231e8c6efcf9c8c1d31bb0ec",
"sha256": "29d94c256679247b33a3dc96cce0f93cbc69c23bf75ff715919332fdbb6a32b8"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "80ecad83231e8c6efcf9c8c1d31bb0ec",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 44721,
"upload_time": "2024-10-23T09:47:19",
"upload_time_iso_8601": "2024-10-23T09:47:19.012212Z",
"url": "https://files.pythonhosted.org/packages/f9/7c/490133c160fb6b84ed374c266f42800e33b50c3bbab1652764e6e1fc498a/frozenlist-1.5.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b1564e45136ffc6bdbfa68c29ca56ef53783ef4c2fd395f7cbf99a2624aa9aaa",
"md5": "0c00d972794e2b8438c6b6a6ae67478b",
"sha256": "8969190d709e7c48ea386db202d708eb94bdb29207a1f269bab1196ce0dcca1f"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "0c00d972794e2b8438c6b6a6ae67478b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 51329,
"upload_time": "2024-10-23T09:47:20",
"upload_time_iso_8601": "2024-10-23T09:47:20.177523Z",
"url": "https://files.pythonhosted.org/packages/b1/56/4e45136ffc6bdbfa68c29ca56ef53783ef4c2fd395f7cbf99a2624aa9aaa/frozenlist-1.5.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "da3b915f0bca8a7ea04483622e84a9bd90033bab54bdf485479556c74fd5eaf5",
"md5": "f16d19afa308fe910329ac7b979f83c0",
"sha256": "7a1a048f9215c90973402e26c01d1cff8a209e1f1b53f72b95c13db61b00f953"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "f16d19afa308fe910329ac7b979f83c0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 91538,
"upload_time": "2024-10-23T09:47:21",
"upload_time_iso_8601": "2024-10-23T09:47:21.176752Z",
"url": "https://files.pythonhosted.org/packages/da/3b/915f0bca8a7ea04483622e84a9bd90033bab54bdf485479556c74fd5eaf5/frozenlist-1.5.0-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c7d1a7c98aad7e44afe5306a2b068434a5830f1470675f0e715abb86eb15f15b",
"md5": "1a0c7c5d5c805d1dbf5542ebffac7549",
"sha256": "dd47a5181ce5fcb463b5d9e17ecfdb02b678cca31280639255ce9d0e5aa67af0"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "1a0c7c5d5c805d1dbf5542ebffac7549",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 52849,
"upload_time": "2024-10-23T09:47:22",
"upload_time_iso_8601": "2024-10-23T09:47:22.439264Z",
"url": "https://files.pythonhosted.org/packages/c7/d1/a7c98aad7e44afe5306a2b068434a5830f1470675f0e715abb86eb15f15b/frozenlist-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3ac876f23bf9ab15d5f760eb48701909645f686f9c64fbb8982674c241fbef14",
"md5": "f2ba1008c3c50fb27d3de8d92e95a6f0",
"sha256": "1431d60b36d15cda188ea222033eec8e0eab488f39a272461f2e6d9e1a8e63c2"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f2ba1008c3c50fb27d3de8d92e95a6f0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 50583,
"upload_time": "2024-10-23T09:47:23",
"upload_time_iso_8601": "2024-10-23T09:47:23.440710Z",
"url": "https://files.pythonhosted.org/packages/3a/c8/76f23bf9ab15d5f760eb48701909645f686f9c64fbb8982674c241fbef14/frozenlist-1.5.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1f22462a3dd093d11df623179d7754a3b3269de3b42de2808cddef50ee0f4f48",
"md5": "365c9851155bfeac378bfe1cb3c2214a",
"sha256": "6482a5851f5d72767fbd0e507e80737f9c8646ae7fd303def99bfe813f76cf7f"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "365c9851155bfeac378bfe1cb3c2214a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 265636,
"upload_time": "2024-10-23T09:47:24",
"upload_time_iso_8601": "2024-10-23T09:47:24.820247Z",
"url": "https://files.pythonhosted.org/packages/1f/22/462a3dd093d11df623179d7754a3b3269de3b42de2808cddef50ee0f4f48/frozenlist-1.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80cfe075e407fc2ae7328155a1cd7e22f932773c8073c1fc78016607d19cc3e5",
"md5": "b1971ecafc3c93ac01da6c19de71f0e6",
"sha256": "44c49271a937625619e862baacbd037a7ef86dd1ee215afc298a417ff3270608"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b1971ecafc3c93ac01da6c19de71f0e6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 270214,
"upload_time": "2024-10-23T09:47:26",
"upload_time_iso_8601": "2024-10-23T09:47:26.156657Z",
"url": "https://files.pythonhosted.org/packages/80/cf/e075e407fc2ae7328155a1cd7e22f932773c8073c1fc78016607d19cc3e5/frozenlist-1.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1580642d061d5de779f39c50cbb00df49682832923f3d2ebfb0fedf02d05f7f",
"md5": "ea1fdc2696a3d9b98b97d6f934ec25fa",
"sha256": "12f78f98c2f1c2429d42e6a485f433722b0061d5c0b0139efa64f396efb5886b"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "ea1fdc2696a3d9b98b97d6f934ec25fa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 273905,
"upload_time": "2024-10-23T09:47:27",
"upload_time_iso_8601": "2024-10-23T09:47:27.741447Z",
"url": "https://files.pythonhosted.org/packages/a1/58/0642d061d5de779f39c50cbb00df49682832923f3d2ebfb0fedf02d05f7f/frozenlist-1.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab663fe0f5f8f2add5b4ab7aa4e199f767fd3b55da26e3ca4ce2cc36698e50c4",
"md5": "d4c6574243428829a384464d1e5e412b",
"sha256": "ce3aa154c452d2467487765e3adc730a8c153af77ad84096bc19ce19a2400840"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d4c6574243428829a384464d1e5e412b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 250542,
"upload_time": "2024-10-23T09:47:28",
"upload_time_iso_8601": "2024-10-23T09:47:28.938342Z",
"url": "https://files.pythonhosted.org/packages/ab/66/3fe0f5f8f2add5b4ab7aa4e199f767fd3b55da26e3ca4ce2cc36698e50c4/frozenlist-1.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f6b8260791bde9198c87a465224e0e2bb62c4e716f5d198fc3a1dacc4895dbd1",
"md5": "bb5804c34b5068a9d04a0a950e6baf43",
"sha256": "9b7dc0c4338e6b8b091e8faf0db3168a37101943e687f373dce00959583f7439"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bb5804c34b5068a9d04a0a950e6baf43",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 267026,
"upload_time": "2024-10-23T09:47:30",
"upload_time_iso_8601": "2024-10-23T09:47:30.283706Z",
"url": "https://files.pythonhosted.org/packages/f6/b8/260791bde9198c87a465224e0e2bb62c4e716f5d198fc3a1dacc4895dbd1/frozenlist-1.5.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2ea43d24f88c527f08f8d44ade24eaee83b2627793fa62fa07cbb7ff7a2f7d42",
"md5": "74166b618e3b66a362237b39456f1989",
"sha256": "45e0896250900b5aa25180f9aec243e84e92ac84bd4a74d9ad4138ef3f5c97de"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "74166b618e3b66a362237b39456f1989",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 257690,
"upload_time": "2024-10-23T09:47:32",
"upload_time_iso_8601": "2024-10-23T09:47:32.388839Z",
"url": "https://files.pythonhosted.org/packages/2e/a4/3d24f88c527f08f8d44ade24eaee83b2627793fa62fa07cbb7ff7a2f7d42/frozenlist-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "de9ad311d660420b2beeff3459b6626f2ab4fb236d07afbdac034a4371fe696e",
"md5": "52484a814a8e2d64223a161f9a28cffc",
"sha256": "561eb1c9579d495fddb6da8959fd2a1fca2c6d060d4113f5844b433fc02f2641"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "52484a814a8e2d64223a161f9a28cffc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 253893,
"upload_time": "2024-10-23T09:47:34",
"upload_time_iso_8601": "2024-10-23T09:47:34.274679Z",
"url": "https://files.pythonhosted.org/packages/de/9a/d311d660420b2beeff3459b6626f2ab4fb236d07afbdac034a4371fe696e/frozenlist-1.5.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c623e491aadc25b56eabd0f18c53bb19f3cdc6de30b2129ee0bc39cd387cd560",
"md5": "0afbd5011be038fe5ba5703a87dd5156",
"sha256": "df6e2f325bfee1f49f81aaac97d2aa757c7646534a06f8f577ce184afe2f0a9e"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "0afbd5011be038fe5ba5703a87dd5156",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 267006,
"upload_time": "2024-10-23T09:47:35",
"upload_time_iso_8601": "2024-10-23T09:47:35.499732Z",
"url": "https://files.pythonhosted.org/packages/c6/23/e491aadc25b56eabd0f18c53bb19f3cdc6de30b2129ee0bc39cd387cd560/frozenlist-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "08c4ab918ce636a35fb974d13d666dcbe03969592aeca6c3ab3835acff01f79c",
"md5": "b5e3307d19ed84d6b75cedfec6d837ba",
"sha256": "140228863501b44b809fb39ec56b5d4071f4d0aa6d216c19cbb08b8c5a7eadb9"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "b5e3307d19ed84d6b75cedfec6d837ba",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 276157,
"upload_time": "2024-10-23T09:47:37",
"upload_time_iso_8601": "2024-10-23T09:47:37.522898Z",
"url": "https://files.pythonhosted.org/packages/08/c4/ab918ce636a35fb974d13d666dcbe03969592aeca6c3ab3835acff01f79c/frozenlist-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c0293b7a0bbbbe5a34833ba26f686aabfe982924adbdcafdc294a7a129c31688",
"md5": "dd6a5e9405529893a56de308b8d3fc6f",
"sha256": "7707a25d6a77f5d27ea7dc7d1fc608aa0a478193823f88511ef5e6b8a48f9d03"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "dd6a5e9405529893a56de308b8d3fc6f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 264642,
"upload_time": "2024-10-23T09:47:38",
"upload_time_iso_8601": "2024-10-23T09:47:38.750767Z",
"url": "https://files.pythonhosted.org/packages/c0/29/3b7a0bbbbe5a34833ba26f686aabfe982924adbdcafdc294a7a129c31688/frozenlist-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ab420595b3dbffc2e82d7fe658c12d5a5bafcd7516c6bf2d1d1feb5387caa9c1",
"md5": "6720f78ff52ef9754e56cf553f588a80",
"sha256": "31a9ac2b38ab9b5a8933b693db4939764ad3f299fcaa931a3e605bc3460e693c"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "6720f78ff52ef9754e56cf553f588a80",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 44914,
"upload_time": "2024-10-23T09:47:40",
"upload_time_iso_8601": "2024-10-23T09:47:40.145108Z",
"url": "https://files.pythonhosted.org/packages/ab/42/0595b3dbffc2e82d7fe658c12d5a5bafcd7516c6bf2d1d1feb5387caa9c1/frozenlist-1.5.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "17c4b7db1206a3fea44bf3b838ca61deb6f74424a8a5db1dd53ecb21da669be6",
"md5": "5ff1ec9eeb108878d65e9497257a41e0",
"sha256": "11aabdd62b8b9c4b84081a3c246506d1cddd2dd93ff0ad53ede5defec7886b28"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "5ff1ec9eeb108878d65e9497257a41e0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 51167,
"upload_time": "2024-10-23T09:47:41",
"upload_time_iso_8601": "2024-10-23T09:47:41.812390Z",
"url": "https://files.pythonhosted.org/packages/17/c4/b7db1206a3fea44bf3b838ca61deb6f74424a8a5db1dd53ecb21da669be6/frozenlist-1.5.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "33b500fcbe8e7e7e172829bf4addc8227d8f599a3d5def3a4e9aa2b54b3145aa",
"md5": "aa2410c732a4ed813aa6a36a64b980fd",
"sha256": "dd94994fc91a6177bfaafd7d9fd951bc8689b0a98168aa26b5f543868548d3ca"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "aa2410c732a4ed813aa6a36a64b980fd",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 95648,
"upload_time": "2024-10-23T09:47:43",
"upload_time_iso_8601": "2024-10-23T09:47:43.118803Z",
"url": "https://files.pythonhosted.org/packages/33/b5/00fcbe8e7e7e172829bf4addc8227d8f599a3d5def3a4e9aa2b54b3145aa/frozenlist-1.5.0-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1e69e4a32fc4b2fa8e9cb6bcb1bad9c7eeb4b254bc34da475b23f93264fdc306",
"md5": "878bea0940dcea39c3e0d49905f10622",
"sha256": "2d0da8bbec082bf6bf18345b180958775363588678f64998c2b7609e34719b10"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "878bea0940dcea39c3e0d49905f10622",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 54888,
"upload_time": "2024-10-23T09:47:44",
"upload_time_iso_8601": "2024-10-23T09:47:44.832651Z",
"url": "https://files.pythonhosted.org/packages/1e/69/e4a32fc4b2fa8e9cb6bcb1bad9c7eeb4b254bc34da475b23f93264fdc306/frozenlist-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "76a3c08322a91e73d1199901a77ce73971cffa06d3c74974270ff97aed6e152a",
"md5": "c0b71096ad75e68e32d457d91746c226",
"sha256": "73f2e31ea8dd7df61a359b731716018c2be196e5bb3b74ddba107f694fbd7604"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c0b71096ad75e68e32d457d91746c226",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 52975,
"upload_time": "2024-10-23T09:47:46",
"upload_time_iso_8601": "2024-10-23T09:47:46.579200Z",
"url": "https://files.pythonhosted.org/packages/76/a3/c08322a91e73d1199901a77ce73971cffa06d3c74974270ff97aed6e152a/frozenlist-1.5.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fc60a315321d8ada167b578ff9d2edc147274ead6129523b3a308501b6621b4f",
"md5": "e9a25c97a76141ec9aa22300a13445cf",
"sha256": "828afae9f17e6de596825cf4228ff28fbdf6065974e5ac1410cecc22f699d2b3"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e9a25c97a76141ec9aa22300a13445cf",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 241912,
"upload_time": "2024-10-23T09:47:47",
"upload_time_iso_8601": "2024-10-23T09:47:47.687441Z",
"url": "https://files.pythonhosted.org/packages/fc/60/a315321d8ada167b578ff9d2edc147274ead6129523b3a308501b6621b4f/frozenlist-1.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bdd01f0980987bca4f94f9e8bae01980b23495ffc2e5049a3da4d9b7d2762bee",
"md5": "e1d35b4b1e674a6950ea41d864d32683",
"sha256": "f1577515d35ed5649d52ab4319db757bb881ce3b2b796d7283e6634d99ace307"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "e1d35b4b1e674a6950ea41d864d32683",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 259433,
"upload_time": "2024-10-23T09:47:49",
"upload_time_iso_8601": "2024-10-23T09:47:49.339389Z",
"url": "https://files.pythonhosted.org/packages/bd/d0/1f0980987bca4f94f9e8bae01980b23495ffc2e5049a3da4d9b7d2762bee/frozenlist-1.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "28e7d00600c072eec8f18a606e281afdf0e8606e71a4882104d0438429b02468",
"md5": "b4a404ee71b1ad860d5ae3f4b938d526",
"sha256": "2150cc6305a2c2ab33299453e2968611dacb970d2283a14955923062c8d00b10"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "b4a404ee71b1ad860d5ae3f4b938d526",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 255576,
"upload_time": "2024-10-23T09:47:50",
"upload_time_iso_8601": "2024-10-23T09:47:50.519522Z",
"url": "https://files.pythonhosted.org/packages/28/e7/d00600c072eec8f18a606e281afdf0e8606e71a4882104d0438429b02468/frozenlist-1.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8271993c5f45dba7be347384ddec1ebc1b4d998291884e7690c06aa6ba755211",
"md5": "9dd69540ddc8dbd85605659c98edf755",
"sha256": "a72b7a6e3cd2725eff67cd64c8f13335ee18fc3c7befc05aed043d24c7b9ccb9"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "9dd69540ddc8dbd85605659c98edf755",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 233349,
"upload_time": "2024-10-23T09:47:53",
"upload_time_iso_8601": "2024-10-23T09:47:53.197921Z",
"url": "https://files.pythonhosted.org/packages/82/71/993c5f45dba7be347384ddec1ebc1b4d998291884e7690c06aa6ba755211/frozenlist-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6630f9c006223feb2ac87f1826b57f2367b60aacc43092f562dab60d2312562e",
"md5": "763871fcb57decc0bf1c0a86066cb748",
"sha256": "c16d2fa63e0800723139137d667e1056bee1a1cf7965153d2d104b62855e9b99"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "763871fcb57decc0bf1c0a86066cb748",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 243126,
"upload_time": "2024-10-23T09:47:54",
"upload_time_iso_8601": "2024-10-23T09:47:54.432344Z",
"url": "https://files.pythonhosted.org/packages/66/30/f9c006223feb2ac87f1826b57f2367b60aacc43092f562dab60d2312562e/frozenlist-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b534e4219c9343f94b81068d0018cbe37948e66c68003b52bf8a05e9509d09ec",
"md5": "ac0edf0d9b96b74e34003cd26254487b",
"sha256": "17dcc32fc7bda7ce5875435003220a457bcfa34ab7924a49a1c19f55b6ee185c"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "ac0edf0d9b96b74e34003cd26254487b",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 241261,
"upload_time": "2024-10-23T09:47:56",
"upload_time_iso_8601": "2024-10-23T09:47:56.010814Z",
"url": "https://files.pythonhosted.org/packages/b5/34/e4219c9343f94b81068d0018cbe37948e66c68003b52bf8a05e9509d09ec/frozenlist-1.5.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "48969141758f6a19f2061a51bb59b9907c92f9bda1ac7b2baaf67a6e352b280f",
"md5": "1a569b42e8e0969822c228124a2d6e81",
"sha256": "97160e245ea33d8609cd2b8fd997c850b56db147a304a262abc2b3be021a9171"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "1a569b42e8e0969822c228124a2d6e81",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 240203,
"upload_time": "2024-10-23T09:47:57",
"upload_time_iso_8601": "2024-10-23T09:47:57.337766Z",
"url": "https://files.pythonhosted.org/packages/48/96/9141758f6a19f2061a51bb59b9907c92f9bda1ac7b2baaf67a6e352b280f/frozenlist-1.5.0-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f9710ef5970e68d181571a050958e84c76a061ca52f9c6f50257d9bfdd84c7f7",
"md5": "d44c034d34a6cfec05d8b96386c9cbfa",
"sha256": "f1e6540b7fa044eee0bb5111ada694cf3dc15f2b0347ca125ee9ca984d5e9e6e"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "d44c034d34a6cfec05d8b96386c9cbfa",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 267539,
"upload_time": "2024-10-23T09:47:58",
"upload_time_iso_8601": "2024-10-23T09:47:58.874508Z",
"url": "https://files.pythonhosted.org/packages/f9/71/0ef5970e68d181571a050958e84c76a061ca52f9c6f50257d9bfdd84c7f7/frozenlist-1.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "abbd6e7d450c5d993b413591ad9cdab6dcdfa2c6ab2cd835b2b5c1cfeb0323bf",
"md5": "0457b9348e6282c1c2df0ce175badbe4",
"sha256": "91d6c171862df0a6c61479d9724f22efb6109111017c87567cfeb7b5d1449fdf"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "0457b9348e6282c1c2df0ce175badbe4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 268518,
"upload_time": "2024-10-23T09:48:00",
"upload_time_iso_8601": "2024-10-23T09:48:00.771530Z",
"url": "https://files.pythonhosted.org/packages/ab/bd/6e7d450c5d993b413591ad9cdab6dcdfa2c6ab2cd835b2b5c1cfeb0323bf/frozenlist-1.5.0-cp38-cp38-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cc3d5a7c4dfff1ae57ca2cbbe9041521472ecd9446d49e7044a0e9bfd0200fd0",
"md5": "8c04cf6fe3ff16f748afa004722d486d",
"sha256": "c1fac3e2ace2eb1052e9f7c7db480818371134410e1f5c55d65e8f3ac6d1407e"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "8c04cf6fe3ff16f748afa004722d486d",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 248114,
"upload_time": "2024-10-23T09:48:02",
"upload_time_iso_8601": "2024-10-23T09:48:02.625658Z",
"url": "https://files.pythonhosted.org/packages/cc/3d/5a7c4dfff1ae57ca2cbbe9041521472ecd9446d49e7044a0e9bfd0200fd0/frozenlist-1.5.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f7412342ec4c714349793f1a1e7bd5c4aeec261e24e697fa9a5499350c3a2415",
"md5": "0b905f9019c440bbecd5f2999e47a343",
"sha256": "b97f7b575ab4a8af9b7bc1d2ef7f29d3afee2226bd03ca3875c16451ad5a7723"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "0b905f9019c440bbecd5f2999e47a343",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 45648,
"upload_time": "2024-10-23T09:48:03",
"upload_time_iso_8601": "2024-10-23T09:48:03.895617Z",
"url": "https://files.pythonhosted.org/packages/f7/41/2342ec4c714349793f1a1e7bd5c4aeec261e24e697fa9a5499350c3a2415/frozenlist-1.5.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0c9085bb3547c327f5975078c1be018478d5e8d250a540c828f8f31a35d2a1bd",
"md5": "c5a9e33873bbc61a22820b8468fcf576",
"sha256": "374ca2dabdccad8e2a76d40b1d037f5bd16824933bf7bcea3e59c891fd4a0923"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "c5a9e33873bbc61a22820b8468fcf576",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 51930,
"upload_time": "2024-10-23T09:48:05",
"upload_time_iso_8601": "2024-10-23T09:48:05.293843Z",
"url": "https://files.pythonhosted.org/packages/0c/90/85bb3547c327f5975078c1be018478d5e8d250a540c828f8f31a35d2a1bd/frozenlist-1.5.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "da4dd94ff0fb0f5313902c132817c62d19cdc5bdcd0c195d392006ef4b779fc6",
"md5": "d194ff08aee121d12079b5da1fa96538",
"sha256": "9bbcdfaf4af7ce002694a4e10a0159d5a8d20056a12b05b45cea944a4953f972"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "d194ff08aee121d12079b5da1fa96538",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 95319,
"upload_time": "2024-10-23T09:48:06",
"upload_time_iso_8601": "2024-10-23T09:48:06.405121Z",
"url": "https://files.pythonhosted.org/packages/da/4d/d94ff0fb0f5313902c132817c62d19cdc5bdcd0c195d392006ef4b779fc6/frozenlist-1.5.0-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c1bd90e554ca2b483d31cb2296e393f72c25bdc38d64526579e95576bfda587",
"md5": "0150512ac9faf2d386546cc49e3cb8cd",
"sha256": "1893f948bf6681733aaccf36c5232c231e3b5166d607c5fa77773611df6dc336"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "0150512ac9faf2d386546cc49e3cb8cd",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 54749,
"upload_time": "2024-10-23T09:48:07",
"upload_time_iso_8601": "2024-10-23T09:48:07.480900Z",
"url": "https://files.pythonhosted.org/packages/8c/1b/d90e554ca2b483d31cb2296e393f72c25bdc38d64526579e95576bfda587/frozenlist-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f8667fdecc9ef49f8db2aa4d9da916e4ecf357d867d87aea292efc11e1b2e932",
"md5": "dbad6bdb081cc274b9484c75363980ca",
"sha256": "2b5e23253bb709ef57a8e95e6ae48daa9ac5f265637529e4ce6b003a37b2621f"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "dbad6bdb081cc274b9484c75363980ca",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 52718,
"upload_time": "2024-10-23T09:48:08",
"upload_time_iso_8601": "2024-10-23T09:48:08.725592Z",
"url": "https://files.pythonhosted.org/packages/f8/66/7fdecc9ef49f8db2aa4d9da916e4ecf357d867d87aea292efc11e1b2e932/frozenlist-1.5.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0804e2fddc92135276e07addbc1cf413acffa0c2d848b3e54cacf684e146df49",
"md5": "bde9b886ddf6b03c5d5e13521f93e859",
"sha256": "0f253985bb515ecd89629db13cb58d702035ecd8cfbca7d7a7e29a0e6d39af5f"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "bde9b886ddf6b03c5d5e13521f93e859",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 241756,
"upload_time": "2024-10-23T09:48:09",
"upload_time_iso_8601": "2024-10-23T09:48:09.843911Z",
"url": "https://files.pythonhosted.org/packages/08/04/e2fddc92135276e07addbc1cf413acffa0c2d848b3e54cacf684e146df49/frozenlist-1.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c652be5ff200815d8a341aee5b16b6b707355e0ca3652953852238eb92b120c2",
"md5": "5d1cc91222414d4b3eac1f5af9bc1e73",
"sha256": "04a5c6babd5e8fb7d3c871dc8b321166b80e41b637c31a995ed844a6139942b6"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "5d1cc91222414d4b3eac1f5af9bc1e73",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 267718,
"upload_time": "2024-10-23T09:48:11",
"upload_time_iso_8601": "2024-10-23T09:48:11.828807Z",
"url": "https://files.pythonhosted.org/packages/c6/52/be5ff200815d8a341aee5b16b6b707355e0ca3652953852238eb92b120c2/frozenlist-1.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "88be4bd93a58be57a3722fc544c36debdf9dcc6758f761092e894d78f18b8f20",
"md5": "2e5b5da832b5985b1a37761cc6b4e0a5",
"sha256": "a9fe0f1c29ba24ba6ff6abf688cb0b7cf1efab6b6aa6adc55441773c252f7411"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "2e5b5da832b5985b1a37761cc6b4e0a5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 263494,
"upload_time": "2024-10-23T09:48:13",
"upload_time_iso_8601": "2024-10-23T09:48:13.424322Z",
"url": "https://files.pythonhosted.org/packages/88/be/4bd93a58be57a3722fc544c36debdf9dcc6758f761092e894d78f18b8f20/frozenlist-1.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "32ba58348b90193caa096ce9e9befea6ae67f38dabfd3aacb47e46137a6250a8",
"md5": "d91700b8d85a62c337be0ed8b91ae6fb",
"sha256": "226d72559fa19babe2ccd920273e767c96a49b9d3d38badd7c91a0fdeda8ea08"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "d91700b8d85a62c337be0ed8b91ae6fb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 232838,
"upload_time": "2024-10-23T09:48:14",
"upload_time_iso_8601": "2024-10-23T09:48:14.792699Z",
"url": "https://files.pythonhosted.org/packages/32/ba/58348b90193caa096ce9e9befea6ae67f38dabfd3aacb47e46137a6250a8/frozenlist-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f6339f152105227630246135188901373c4f322cc026565ca6215b063f4c82f4",
"md5": "491fca28ff502d582bb0cda5d74b669e",
"sha256": "15b731db116ab3aedec558573c1a5eec78822b32292fe4f2f0345b7f697745c2"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "491fca28ff502d582bb0cda5d74b669e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 242912,
"upload_time": "2024-10-23T09:48:16",
"upload_time_iso_8601": "2024-10-23T09:48:16.249901Z",
"url": "https://files.pythonhosted.org/packages/f6/33/9f152105227630246135188901373c4f322cc026565ca6215b063f4c82f4/frozenlist-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0103db38fb3ccbafadd80a1b0d6800c987b0e3fe3ef2d117c6ced0246eea17a",
"md5": "87bb17758d605b62ee950031d9b7daba",
"sha256": "366d8f93e3edfe5a918c874702f78faac300209a4d5bf38352b2c1bdc07a766d"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "87bb17758d605b62ee950031d9b7daba",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 244763,
"upload_time": "2024-10-23T09:48:17",
"upload_time_iso_8601": "2024-10-23T09:48:17.781017Z",
"url": "https://files.pythonhosted.org/packages/a0/10/3db38fb3ccbafadd80a1b0d6800c987b0e3fe3ef2d117c6ced0246eea17a/frozenlist-1.5.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2cd1df468fdce2f66a4608dffe44c40cdc35eeaa67ef7fd1d813f99a9a37842",
"md5": "ccd711c5efde35f8cdda7bcaff759dc9",
"sha256": "1b96af8c582b94d381a1c1f51ffaedeb77c821c690ea5f01da3d70a487dd0a9b"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "ccd711c5efde35f8cdda7bcaff759dc9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 242841,
"upload_time": "2024-10-23T09:48:19",
"upload_time_iso_8601": "2024-10-23T09:48:19.507555Z",
"url": "https://files.pythonhosted.org/packages/e2/cd/1df468fdce2f66a4608dffe44c40cdc35eeaa67ef7fd1d813f99a9a37842/frozenlist-1.5.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ee5f16097a5ca0bb6b6779c02cc9379c72fe98d56115d4c54d059fb233168fb6",
"md5": "06e6352932e154bd426067bc2eb15e7d",
"sha256": "c03eff4a41bd4e38415cbed054bbaff4a075b093e2394b6915dca34a40d1e38b"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "06e6352932e154bd426067bc2eb15e7d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 263407,
"upload_time": "2024-10-23T09:48:21",
"upload_time_iso_8601": "2024-10-23T09:48:21.467971Z",
"url": "https://files.pythonhosted.org/packages/ee/5f/16097a5ca0bb6b6779c02cc9379c72fe98d56115d4c54d059fb233168fb6/frozenlist-1.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0ff758cd220ee1c2248ee65a32f5b4b93689e3fe1764d85537eee9fc392543bc",
"md5": "9bc0e5fe692b95cf0cad1423a35f7929",
"sha256": "50cf5e7ee9b98f22bdecbabf3800ae78ddcc26e4a435515fc72d97903e8488e0"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "9bc0e5fe692b95cf0cad1423a35f7929",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 265083,
"upload_time": "2024-10-23T09:48:22",
"upload_time_iso_8601": "2024-10-23T09:48:22.725945Z",
"url": "https://files.pythonhosted.org/packages/0f/f7/58cd220ee1c2248ee65a32f5b4b93689e3fe1764d85537eee9fc392543bc/frozenlist-1.5.0-cp39-cp39-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "62b849768980caabf81ac4a2d156008f7cbd0107e6b36d08a313bb31035d9201",
"md5": "3b425ff755abfbc97eff3b384977b344",
"sha256": "1e76bfbc72353269c44e0bc2cfe171900fbf7f722ad74c9a7b638052afe6a00c"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "3b425ff755abfbc97eff3b384977b344",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 251564,
"upload_time": "2024-10-23T09:48:24",
"upload_time_iso_8601": "2024-10-23T09:48:24.272925Z",
"url": "https://files.pythonhosted.org/packages/62/b8/49768980caabf81ac4a2d156008f7cbd0107e6b36d08a313bb31035d9201/frozenlist-1.5.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb83619327da3b86ef957ee7a0cbf3c166a09ed1e87a3f7f1ff487d7d0284683",
"md5": "c059b4cbdd974e8d87edbf3b751b9a26",
"sha256": "666534d15ba8f0fda3f53969117383d5dc021266b3c1a42c9ec4855e4b58b9d3"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "c059b4cbdd974e8d87edbf3b751b9a26",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 45691,
"upload_time": "2024-10-23T09:48:26",
"upload_time_iso_8601": "2024-10-23T09:48:26.317383Z",
"url": "https://files.pythonhosted.org/packages/cb/83/619327da3b86ef957ee7a0cbf3c166a09ed1e87a3f7f1ff487d7d0284683/frozenlist-1.5.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b28407bc34a745151ed2322c690b6e7d83d7101472e81ed76e1ebdac0b70a78",
"md5": "05110265359ae2de07cf867b9a642556",
"sha256": "5c28f4b5dbef8a0d8aad0d4de24d1e9e981728628afaf4ea0792f5d0939372f0"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "05110265359ae2de07cf867b9a642556",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 51767,
"upload_time": "2024-10-23T09:48:27",
"upload_time_iso_8601": "2024-10-23T09:48:27.427051Z",
"url": "https://files.pythonhosted.org/packages/8b/28/407bc34a745151ed2322c690b6e7d83d7101472e81ed76e1ebdac0b70a78/frozenlist-1.5.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c6c8a5be5b7550c10858fcf9b0ea054baccab474da77d37f1e828ce043a3a5d4",
"md5": "649401d9ab9b34097739aca8949330d4",
"sha256": "d994863bba198a4a518b467bb971c56e1db3f180a25c6cf7bb1949c267f748c3"
},
"downloads": -1,
"filename": "frozenlist-1.5.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "649401d9ab9b34097739aca8949330d4",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 11901,
"upload_time": "2024-10-23T09:48:28",
"upload_time_iso_8601": "2024-10-23T09:48:28.851072Z",
"url": "https://files.pythonhosted.org/packages/c6/c8/a5be5b7550c10858fcf9b0ea054baccab474da77d37f1e828ce043a3a5d4/frozenlist-1.5.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8fed0f4cec13a93c02c47ec32d81d11c0c1efbadf4a471e3f3ce7cad366cbbd3",
"md5": "0882f528872840df39091fb5085e258a",
"sha256": "81d5af29e61b9c8348e876d442253723928dce6433e0e76cd925cd83f1b4b817"
},
"downloads": -1,
"filename": "frozenlist-1.5.0.tar.gz",
"has_sig": false,
"md5_digest": "0882f528872840df39091fb5085e258a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 39930,
"upload_time": "2024-10-23T09:48:29",
"upload_time_iso_8601": "2024-10-23T09:48:29.903816Z",
"url": "https://files.pythonhosted.org/packages/8f/ed/0f4cec13a93c02c47ec32d81d11c0c1efbadf4a471e3f3ce7cad366cbbd3/frozenlist-1.5.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-23 09:48:29",
"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"
}