Skip to main content

A list-like structure which implements collections.abc.MutableSequence

Project description

frozenlist

GitHub status for master branch codecov.io status for master branch frozenlist @ PyPI Read The Docs build status badge Matrix Room — #aio-libs:matrix.org Matrix Space — #aio-libs-space:matrix.org

Introduction

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

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

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

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

Installation

$ pip install frozenlist

Documentation

https://frozenlist.aio-libs.org

Communication channels

We have a Matrix Space #aio-libs-space:matrix.org which is also accessible via Gitter.

License

frozenlist is offered under the Apache 2 license.

Source code

The project is hosted on GitHub

Please file an issue in the bug tracker if you have found a bug or have some suggestions to improve the library.

Changelog

v1.7.0

(2025-06-09)

Features

  • Added deepcopy support to FrozenList – by @bdraco.

    Related issues and pull requests on GitHub: #659.

Packaging updates and notes for downstreams

  • Fixed an issue where frozenlist binary wheels would be built with debugging symbols and line tracing enabled, which significantly impacted performance. Line tracing is now disabled by default and can only be enabled explicitly – by @bdraco.

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

    1. Setting the FROZENLIST_CYTHON_TRACING environment variable

    2. Using the --config-setting=with-cython-tracing=true option with pip

    Related issues and pull requests on GitHub: #660.

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

    Related issues and pull requests on GitHub: #661.


v1.6.2

(2025-06-03)

No significant changes.


v1.6.1

(2025-06-02)

Bug fixes

  • Correctly use cimport for including PyBool_FromLong – by @lysnikolaou.

    Related issues and pull requests on GitHub: #653.

Packaging updates and notes for downstreams

  • Exclude _frozenlist.cpp from bdists/wheels – by @musicinmybrain.

    Related issues and pull requests on GitHub: #649.

  • Updated to use Cython 3.1 universally across the build path – by @lysnikolaou.

    Related issues and pull requests on GitHub: #654.


v1.6.0

(2025-04-17)

Bug fixes

  • Stopped implicitly allowing the use of Cython pre-release versions when building the distribution package – by @ajsanchezsanz and @markgreene74.

    Related commits on GitHub: 41591f2.

Features

  • Implemented support for the free-threaded build of CPython 3.13 – by @lysnikolaou.

    Related issues and pull requests on GitHub: #618.

  • Started building armv7l wheels – by @bdraco.

    Related issues and pull requests on GitHub: #642.

Packaging updates and notes for downstreams

  • Stopped implicitly allowing the use of Cython pre-release versions when building the distribution package – by @ajsanchezsanz and @markgreene74.

    Related commits on GitHub: 41591f2.

  • Started building wheels for the free-threaded build of CPython 3.13 – by @lysnikolaou.

    Related issues and pull requests on GitHub: #618.

  • The packaging metadata switched to including an SPDX license identifier introduced in PEP 639 – by @cdce8p.

    Related issues and pull requests on GitHub: #639.

Contributor-facing changes

  • GitHub Actions CI/CD is now configured to manage caching pip-ecosystem dependencies using re-actors/cache-python-deps – an action by @webknjaz that takes into account ABI stability and the exact version of Python runtime.

    Related issues and pull requests on GitHub: #633.

  • Organized dependencies into test and lint dependencies so that no unnecessary ones are installed during CI runs – by @lysnikolaou.

    Related issues and pull requests on GitHub: #636.


1.5.0 (2024-10-22)

Bug fixes

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

    This change also improves the code coverage of this method that was previously missing – by @webknjaz.

    Related issues and pull requests on GitHub: #567, #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.

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

    Related issues and pull requests on GitHub: #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.

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

    Related issues and pull requests on GitHub: #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.

  • Replaced the packaging is replaced from an old-fashioned setup.py to an in-tree PEP 517 build backend – by @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:

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

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

    The same can be achieved via pypa/build:

    $ 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.

Contributor-facing changes

  • It is now possible to request line tracing in Cython builds using the with-cython-tracing PEP 517 config setting – @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:

    $ 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:

    $ python -Im pip install -e .

    Alternatively, the FROZENLIST_CYTHON_TRACING=1 environment variable can be set to do the same as the PEP 517 config setting.

    Related issues and pull requests on GitHub: #560.

  • Coverage collection has been implemented for the Cython modules – by @webknjaz.

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

    Related issues and pull requests on GitHub: #561.

  • A step-by-step Release Guide guide has been added, describing how to release frozenlist – by @webknjaz.

    This is primarily targeting the maintainers.

    Related issues and pull requests on GitHub: #563.

  • Detailed Contributing Guidelines on authoring the changelog fragments have been published in the documentation – by @webknjaz.

    Related issues and pull requests on GitHub: #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

Deprecations and Removals

  • Dropped Python 3.7 support. #413

Misc


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


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

Deprecations and Removals

  • Dropped Python 3.6 support #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

  • Added support for Python 3.10. #227

  • Started shipping platform-specific wheels with the musl tag targeting typical Alpine Linux runtimes. #227

  • Started shipping platform-specific arm64 wheels for Apple Silicon. #227


1.1.1 (2020-11-14)

Bugfixes

  • Provide x86 Windows wheels. #169


1.1.0 (2020-10-13)

Features

  • Add support for hashing of a frozen list. #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

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

frozenlist-1.7.0.tar.gz (45.1 kB view details)

Uploaded Source

Built Distributions

frozenlist-1.7.0-py3-none-any.whl (13.1 kB view details)

Uploaded Python 3

frozenlist-1.7.0-cp313-cp313t-win_amd64.whl (47.5 kB view details)

Uploaded CPython 3.13tWindows x86-64

frozenlist-1.7.0-cp313-cp313t-win32.whl (43.1 kB view details)

Uploaded CPython 3.13tWindows x86

frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl (282.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_s390x.whl (288.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (288.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_i686.whl (266.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl (290.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl (281.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (291.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (292.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (273.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (292.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

frozenlist-1.7.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

frozenlist-1.7.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (266.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

frozenlist-1.7.0-cp313-cp313t-macosx_11_0_arm64.whl (48.5 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

frozenlist-1.7.0-cp313-cp313t-macosx_10_13_x86_64.whl (48.9 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

frozenlist-1.7.0-cp313-cp313t-macosx_10_13_universal2.whl (84.3 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ universal2 (ARM64, x86-64)

frozenlist-1.7.0-cp313-cp313-win_amd64.whl (43.2 kB view details)

Uploaded CPython 3.13Windows x86-64

frozenlist-1.7.0-cp313-cp313-win32.whl (39.2 kB view details)

Uploaded CPython 3.13Windows x86

frozenlist-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (232.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

frozenlist-1.7.0-cp313-cp313-musllinux_1_2_s390x.whl (238.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

frozenlist-1.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl (236.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

frozenlist-1.7.0-cp313-cp313-musllinux_1_2_i686.whl (217.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

frozenlist-1.7.0-cp313-cp313-musllinux_1_2_armv7l.whl (242.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

frozenlist-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (228.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

frozenlist-1.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (233.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

frozenlist-1.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (237.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

frozenlist-1.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (225.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

frozenlist-1.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (232.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

frozenlist-1.7.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (232.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

frozenlist-1.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (215.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

frozenlist-1.7.0-cp313-cp313-macosx_11_0_arm64.whl (45.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

frozenlist-1.7.0-cp313-cp313-macosx_10_13_x86_64.whl (47.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

frozenlist-1.7.0-cp313-cp313-macosx_10_13_universal2.whl (79.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

frozenlist-1.7.0-cp312-cp312-win_amd64.whl (43.9 kB view details)

Uploaded CPython 3.12Windows x86-64

frozenlist-1.7.0-cp312-cp312-win32.whl (39.5 kB view details)

Uploaded CPython 3.12Windows x86

frozenlist-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (237.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

frozenlist-1.7.0-cp312-cp312-musllinux_1_2_s390x.whl (249.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

frozenlist-1.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl (245.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

frozenlist-1.7.0-cp312-cp312-musllinux_1_2_i686.whl (225.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

frozenlist-1.7.0-cp312-cp312-musllinux_1_2_armv7l.whl (249.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

frozenlist-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (236.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

frozenlist-1.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (244.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

frozenlist-1.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (248.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

frozenlist-1.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (233.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

frozenlist-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (243.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

frozenlist-1.7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (241.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

frozenlist-1.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (224.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl (46.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

frozenlist-1.7.0-cp312-cp312-macosx_10_13_x86_64.whl (48.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

frozenlist-1.7.0-cp312-cp312-macosx_10_13_universal2.whl (81.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

frozenlist-1.7.0-cp311-cp311-win_amd64.whl (44.0 kB view details)

Uploaded CPython 3.11Windows x86-64

frozenlist-1.7.0-cp311-cp311-win32.whl (39.6 kB view details)

Uploaded CPython 3.11Windows x86

frozenlist-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (233.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

frozenlist-1.7.0-cp311-cp311-musllinux_1_2_s390x.whl (246.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

frozenlist-1.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl (245.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

frozenlist-1.7.0-cp311-cp311-musllinux_1_2_i686.whl (229.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

frozenlist-1.7.0-cp311-cp311-musllinux_1_2_armv7l.whl (248.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

frozenlist-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (234.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

frozenlist-1.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (239.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

frozenlist-1.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (245.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

frozenlist-1.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (231.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

frozenlist-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (237.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

frozenlist-1.7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (235.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

frozenlist-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (224.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

frozenlist-1.7.0-cp311-cp311-macosx_11_0_arm64.whl (47.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

frozenlist-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl (48.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

frozenlist-1.7.0-cp311-cp311-macosx_10_9_universal2.whl (82.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

frozenlist-1.7.0-cp310-cp310-win_amd64.whl (43.8 kB view details)

Uploaded CPython 3.10Windows x86-64

frozenlist-1.7.0-cp310-cp310-win32.whl (39.6 kB view details)

Uploaded CPython 3.10Windows x86

frozenlist-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (221.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

frozenlist-1.7.0-cp310-cp310-musllinux_1_2_s390x.whl (234.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

frozenlist-1.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl (232.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

frozenlist-1.7.0-cp310-cp310-musllinux_1_2_i686.whl (218.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

frozenlist-1.7.0-cp310-cp310-musllinux_1_2_armv7l.whl (238.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

frozenlist-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (222.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

frozenlist-1.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (227.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

frozenlist-1.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (233.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

frozenlist-1.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (222.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

frozenlist-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (224.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

frozenlist-1.7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (222.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

frozenlist-1.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (213.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

frozenlist-1.7.0-cp310-cp310-macosx_11_0_arm64.whl (46.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

frozenlist-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl (47.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

frozenlist-1.7.0-cp310-cp310-macosx_10_9_universal2.whl (81.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

frozenlist-1.7.0-cp39-cp39-win_amd64.whl (44.1 kB view details)

Uploaded CPython 3.9Windows x86-64

frozenlist-1.7.0-cp39-cp39-win32.whl (39.8 kB view details)

Uploaded CPython 3.9Windows x86

frozenlist-1.7.0-cp39-cp39-musllinux_1_2_x86_64.whl (222.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

frozenlist-1.7.0-cp39-cp39-musllinux_1_2_s390x.whl (235.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

frozenlist-1.7.0-cp39-cp39-musllinux_1_2_ppc64le.whl (234.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

frozenlist-1.7.0-cp39-cp39-musllinux_1_2_i686.whl (220.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

frozenlist-1.7.0-cp39-cp39-musllinux_1_2_armv7l.whl (239.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

frozenlist-1.7.0-cp39-cp39-musllinux_1_2_aarch64.whl (224.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

frozenlist-1.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (229.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

frozenlist-1.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (235.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

frozenlist-1.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (224.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

frozenlist-1.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (226.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

frozenlist-1.7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (225.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

frozenlist-1.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (216.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

frozenlist-1.7.0-cp39-cp39-macosx_11_0_arm64.whl (47.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

frozenlist-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl (48.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

frozenlist-1.7.0-cp39-cp39-macosx_10_9_universal2.whl (82.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file frozenlist-1.7.0.tar.gz.

File metadata

  • Download URL: frozenlist-1.7.0.tar.gz
  • Upload date:
  • Size: 45.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for frozenlist-1.7.0.tar.gz
Algorithm Hash digest
SHA256 2e310d81923c2437ea8670467121cc3e9b0f76d3043cc1d2331d56c7fb7a3a8f
MD5 3820fe3685c2d9f544d7a0d4041c089a
BLAKE2b-256 79b1b64018016eeb087db503b038296fd782586432b9c077fc5c7839e9cb6ef6

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0.tar.gz:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-py3-none-any.whl.

File metadata

  • Download URL: frozenlist-1.7.0-py3-none-any.whl
  • Upload date:
  • Size: 13.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for frozenlist-1.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9a5af342e34f7e97caf8c995864c7a396418ae2859cc6fdf1b1073020d516a7e
MD5 847e5d168f92fdbe0eaf4dc17db01a32
BLAKE2b-256 ee45b82e3c16be2182bff01179db177fe144d58b5dc787a7d4492c6ed8b9317f

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-py3-none-any.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 3bf8010d71d4507775f658e9823210b7427be36625b387221642725b515dcf3e
MD5 90e3e0989c3f42b7fd85a3a5fd9e8c97
BLAKE2b-256 bbed41956f52105b8dbc26e457c5705340c67c8cc2b79f394b79bffc09d0e938

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-win32.whl.

File metadata

  • Download URL: frozenlist-1.7.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 43.1 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 3a14027124ddb70dfcee5148979998066897e79f89f64b13328595c4bdf77c81
MD5 a4d84553dc1e4f761f553fc9e9b49655
BLAKE2b-256 0b318fbc5af2d183bff20f21aa743b4088eac4445d2bb1cdece449ae80e4e2d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-win32.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a85e345b4c43db8b842cab1feb41be5cc0b10a1830e6295b69d7310f99becaf
MD5 4250c9d9e0da53d2f4f1c8ed95eb11c3
BLAKE2b-256 40375f9f3c3fd7f7746082ec67bcdc204db72dad081f4f83a503d33220a92973

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4e7e9652b3d367c7bd449a727dc79d5043f48b88d0cbfd4f9f1060cf2b414104
MD5 9e9688f0ccfcc9853032d66a6733b795
BLAKE2b-256 001147b6117002a0e904f004d70ec5194fe9144f117c33c851e3d51c765962d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3d688126c242a6fabbd92e02633414d40f50bb6002fa4cf995a1d18051525657
MD5 99c9521ebb38ea50b9e64e8ddf78fefb
BLAKE2b-256 cd45e365fdb554159462ca12df54bc59bfa7a9a273ecc21e99e72e597564d1ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a47f2abb4e29b3a8d0b530f7c3598badc6b134562b1a5caee867f7c62fee51e3
MD5 bccd0b37a995b90b35a1c1feae75a144
BLAKE2b-256 bb73f89b7fbce8b0b0c095d82b008afd0590f71ccb3dee6eee41791cf8cd25fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c0303e597eb5a5321b4de9c68e9845ac8f290d2ab3f3e2c864437d3c5a30cd65
MD5 c9de2ee8fdf07211a4a1fa427cf37dbf
BLAKE2b-256 4234a3e2c00c00f9e2a9db5653bca3fec306349e71aff14ae45ecc6d0951dd24

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32dc2e08c67d86d0969714dd484fd60ff08ff81d1a1e40a77dd34a387e6ebc0c
MD5 a9b61ad9c95c755384be7e9882f59d25
BLAKE2b-256 8867c94103a23001b17808eb7dd1200c156bb69fb68e63fcf0693dde4cd6228c

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f2038310bc582f3d6a09b3816ab01737d60bf7b1ec70f5356b09e84fb7408ab1
MD5 05882f36da4e17d1432f70341e79b1a3
BLAKE2b-256 a61c3efa6e7d5a39a1d5ef0abeb51c48fb657765794a46cf124e5aca2c7a592c

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 acd03d224b0175f5a850edc104ac19040d35419eddad04e7cf2d5986d98427f1
MD5 7310360a2d7785f64780738890c7dc86
BLAKE2b-256 883cc840bfa474ba3fa13c772b93070893c6e9d5c0350885760376cbe3b6c1b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f34560fb1b4c3e30ba35fa9a13894ba39e5acfc5f60f57d8accde65f46cc5e74
MD5 989cf7ceb8d6727b310350b2e8c27ad6
BLAKE2b-256 831fde84c642f17c8f851a2905cee2dae401e5e0daca9b5ef121e120e19aa825

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9537c2777167488d539bc5de2ad262efc44388230e5118868e172dd4a552b146
MD5 4ba39a715103eb2e881d28c68f7d29da
BLAKE2b-256 5ecbdf6de220f5036001005f2d726b789b2c0b65f2363b104bbc16f5be8084f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 765bb588c86e47d0b68f23c1bee323d4b703218037765dcf3f25c838c6fecceb
MD5 9d47a74000cd88f097768508eeab5ab1
BLAKE2b-256 4e2772765be905619dfde25a7f33813ac0341eb6b076abede17a2e3fbfade0cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b8c05e4c8e5f36e5e088caa1bf78a687528f83c043706640a92cb76cd6999384
MD5 1e5e63874b3de87e1b50997bf8df6ec0
BLAKE2b-256 4f00d5c5e09d4922c395e2f2f6b79b9a20dab4b67daaf78ab92e7729341f61f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 912a7e8375a1c9a68325a902f3953191b7b292aa3c3fb0d71a216221deca460b
MD5 bae762c8c031025f4ac080d83a415217
BLAKE2b-256 6986f9596807b03de126e11e7d42ac91e3d0b19a6599c714a1989a4e85eeefc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 82d664628865abeb32d90ae497fb93df398a69bb3434463d172b80fc25b0dd7d
MD5 e17304eea2a7010272b6cc7f80f0341d
BLAKE2b-256 a47dec2c1e1dc16b85bc9d526009961953df9cec8481b6886debb36ec9107799

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a6f86e4193bb0e235ef6ce3dde5cbabed887e0b11f516ce8a0f4d3b33078ec2d
MD5 c48d9ac87bd9e6d840011fc55b5082da
BLAKE2b-256 56d55c4cf2319a49eddd9dd7145e66c4866bdc6f3dbc67ca3d59685149c11e0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313t-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: frozenlist-1.7.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 43.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 52109052b9791a3e6b5d1b65f4b909703984b770694d3eb64fad124c835d7cba
MD5 f94216fd969630814e819559f50a415a
BLAKE2b-256 3589a487a98d94205d85745080a37860ff5744b9820a2c9acbcdd9440bfddf98

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: frozenlist-1.7.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 39.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5fc4df05a6591c7768459caba1b342d9ec23fa16195e744939ba5914596ae3e1
MD5 4389f4a43ba1555db769346d0a40914f
BLAKE2b-256 d78be7f9dfde869825489382bc0d512c15e96d3964180c9499efcec72e85db7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-win32.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2cdfaaec6a2f9327bf43c933c0319a7c429058e8537c508964a133dffee412e
MD5 ec903879e36f506ab64a652e0c25ef6e
BLAKE2b-256 ce13c12bf657494c2fd1079a48b2db49fa4196325909249a52d8f09bc9123fd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f3f4410a0a601d349dd406b5713fec59b4cee7e71678d5b17edda7f4655a940b
MD5 cd65eaaa9447dc7a30ace540da18ca28
BLAKE2b-256 b2148d19ccdd3799310722195a72ac94ddc677541fb4bef4091d8e7775752360

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3fbba20e662b9c2130dc771e332a99eff5da078b2b2648153a40669a6d0e36ca
MD5 deb536db8b8b837fc919c61574b83224
BLAKE2b-256 3ee8ad683e75da6ccef50d0ab0c2b2324b32f84fc88ceee778ed79b8e2d2fe2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0aa7e176ebe115379b5b1c95b4096fb1c17cce0847402e227e712c27bdb5a949
MD5 fc2d9a00aa9c10ba9b7e4625ada1c0be
BLAKE2b-256 b8333f8d6ced42f162d743e3517781566b8481322be321b486d9d262adf70bfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 376b6222d114e97eeec13d46c486facd41d4f43bab626b7c3f6a8b4e81a5192c
MD5 72007a54a911e85c17572456faa6a77f
BLAKE2b-256 bac9f4b39e904c03927b7ecf891804fd3b4df3db29b9e487c6418e37988d6e9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05579bf020096fe05a764f1f84cd104a12f78eaab68842d036772dc6d4870b4b
MD5 881cc706d07f3a8c73c110dbb821a663
BLAKE2b-256 5952460db4d7ba0811b9ccb85af996019f5d70831f2f5f255f7cc61f86199795

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04fb24d104f425da3540ed83cbfc31388a586a7696142004c577fa61c6298c3f
MD5 0dd973887747ce294ed089864ff99aef
BLAKE2b-256 f8b72ace5450ce85f2af05a871b8c8719b341294775a0a6c5585d5e6170f2ce7

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bd8c4e58ad14b4fa7802b8be49d47993182fdd4023393899632c88fd8cd994eb
MD5 86ea7150654d0ec7fe9818e460696617
BLAKE2b-256 bae28417ae0f8eacb1d071d4950f32f229aa6bf68ab69aab797b72a07ea68d4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6aeac207a759d0dedd2e40745575ae32ab30926ff4fa49b1635def65806fddee
MD5 31eedd8386606492b25d3f2ce6697ece
BLAKE2b-256 c045ed2798718910fe6eb3ba574082aaceff4528e6323f9a8570be0f7028d8e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dab46c723eeb2c255a64f9dc05b8dd601fde66d6b19cdb82b2e09cc6ff8d8b5d
MD5 5ce65ac544bd1c85be7d355eedf6600c
BLAKE2b-256 197c71bb0bbe0832793c601fff68cd0cf6143753d0c667f9aec93d3c323f4b55

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8bd7eb96a675f18aa5c553eb7ddc24a43c8c18f22e1f9925528128c052cdbe00
MD5 8837ddce96c7a3e6920a5d6c1ccc52c6
BLAKE2b-256 7231bc8c5c99c7818293458fe745dab4fd5730ff49697ccc82b554eb69f16a24

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a5c505156368e4ea6b53b5ac23c92d7edc864537ff911d2fb24c140bb175e60
MD5 232d8caab1292acd7303bc9bc5ca4de7
BLAKE2b-256 46b96989292c5539553dba63f3c83dc4598186ab2888f67c0dc1d917e6887db6

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbb65198a9132ebc334f237d7b0df163e4de83fb4f2bdfe46c1e654bdb0c5d43
MD5 b4f76320fbaece1c221ce1b5fe15b9da
BLAKE2b-256 f425a0895c99270ca6966110f4ad98e87e5662eab416a17e7fd53c364bf8b954

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d1a81c85417b914139e3a9b995d4a1c84559afc839a93cf2cb7f15e6e5f6ed2d
MD5 73171cdb39bf80542a0ac6cccb1a64cf
BLAKE2b-256 832e5b70b6a3325363293fe5fc3ae74cdcbc3e996c2a11dde2fd9f1fb0776d19

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ee80eeda5e2a4e660651370ebffd1286542b67e268aa1ac8d6dbe973120ef7ee
MD5 f1ad3b43dd29177a2137e3acecbb0476
BLAKE2b-256 24906b2cebdabdbd50367273c20ff6b57a3dfa89bd0762de02c3a1eb42cb6462

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: frozenlist-1.7.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 43.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 563b72efe5da92e02eb68c59cb37205457c977aa7a449ed1b37e6939e5c47c6a
MD5 ea3f06e91edc3670153677f57379d271
BLAKE2b-256 0b15c026e9a9fc17585a9d461f65d8593d281fedf55fbf7eb53f16c6df2392f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: frozenlist-1.7.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 39.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 426c7bc70e07cfebc178bc4c2bf2d861d720c4fff172181eeb4a4c41d4ca2ad3
MD5 b466449ae078d8e78b30d55cef1c065d
BLAKE2b-256 f37487601e0fb0369b7a2baf404ea921769c53b7ae00dee7dcfe5162c8c6dbf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-win32.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 290a172aae5a4c278c6da8a96222e6337744cd9c77313efe33d5670b9f65fc43
MD5 118596cdbfc066846893c632b9d62241
BLAKE2b-256 1c809a0eb48b944050f94cc51ee1c413eb14a39543cc4f760ed12657a5a3c45a

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 99886d98e1643269760e5fe0df31e5ae7050788dd288947f7f007209b8c33f08
MD5 64a5a3fea5c144fee0ac45745f332667
BLAKE2b-256 80e8edf2f9e00da553f07f5fa165325cfc302dead715cab6ac8336a5f3d0adc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 73bd45e1488c40b63fe5a7df892baf9e2a4d4bb6409a2b3b78ac1c6236178e01
MD5 9990e34742aec4d21da8e83f567c086a
BLAKE2b-256 bc293a32959e68f9cf000b04e79ba574527c17e8842e38c91d68214a37455786

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e4389e06714cfa9d47ab87f784a7c5be91d3934cd6e9a7b85beef808297cc025
MD5 70740bce6eda223bd1b65cc079aaa4c9
BLAKE2b-256 8dba9a28042f84a6bf8ea5dbc81cfff8eaef18d78b2a1ad9d51c7bc5b029ad16

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1eaa7e9c6d15df825bf255649e05bd8a74b04a4d2baa1ae46d9c2d00b2ca2cb5
MD5 d62ad34916dcb6bfed81620b62e28fec
BLAKE2b-256 5d32476a4b5cfaa0ec94d3f808f193301debff2ea42288a099afe60757ef6282

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15a7eaba63983d22c54d255b854e8108e7e5f3e89f647fc854bd77a237e767df
MD5 cf5cca7767aa19a7c5b4f294e3e3f75c
BLAKE2b-256 1dfacb4a76bea23047c8462976ea7b7a2bf53997a0ca171302deae9d6dd12096

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8fc5d5cda37f62b262405cf9652cf0856839c4be8ee41be0afe8858f17f4c94b
MD5 b3bf34439881616e78a43bc3725d315f
BLAKE2b-256 be00711d1337c7327d88c44d91dd0f556a1c47fb99afc060ae0ef66b4d24793d

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bfe2b675cf0aaa6d61bf8fbffd3c274b3c9b7b1623beb3809df8a81399a4a9c4
MD5 a797ed8cf6ce57d2ad80cd8e54bc3ba9
BLAKE2b-256 06396a17b7c107a2887e781a48ecf20ad20f1c39d94b2a548c83615b5b879f28

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c193dda2b6d49f4c4398962810fa7d7c78f032bf45572b3e04dd5249dff27e08
MD5 1bb62d836e0a00d9a60a30be813eaba4
BLAKE2b-256 643e5036af9d5031374c64c387469bfcc3af537fc0f5b1187d83a1cf6fab1639

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa57daa5917f1738064f302bf2626281a1cb01920c32f711fbc7bc36111058a8
MD5 2a9ebedddd7cf9e5e42948bfb9f8f815
BLAKE2b-256 d6a2a910bafe29c86997363fb4c02069df4ff0b5bc39d33c5198b4e9dd42d8f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 488d0a7d6a0008ca0db273c542098a0fa9e7dfaa7e57f70acef43f32b3f69dca
MD5 5735538cc90fa141ae8a005927ce6fdb
BLAKE2b-256 8ddb48421f62a6f77c553575201e89048e97198046b793f4a089c79a6e3268bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b0d5ce521d1dd7d620198829b87ea002956e4319002ef0bc8d3e6d045cb4646e
MD5 9c85e1ac99d243e0e5cceeeea12c356c
BLAKE2b-256 24fe74e6ec0639c115df13d5850e75722750adabdc7de24e37e05a40527ca539

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3dabd5a8f84573c8d10d8859a50ea2dec01eea372031929871368c09fa103478
MD5 74f1c46ebbe1022e3955c91f530d2575
BLAKE2b-256 017a0046ef1bd6699b40acd2067ed6d6670b4db2f425c56980fa21c982c2a9db

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1f5906d3359300b8a9bb194239491122e6cf1444c2efb88865426f170c262cdb
MD5 09d29cdf7c353e38db166a8de8ba3c0e
BLAKE2b-256 4c9d02754159955088cb52567337d1113f945b9e444c4960771ea90eb73de8db

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3dbf9952c4bb0e90e98aec1bd992b3318685005702656bc6f67c1a32b76787f2
MD5 6045ef9b913a0eaa4822c8281b3fbaeb
BLAKE2b-256 efa2c8131383f1e66adad5f6ecfcce383d584ca94055a34d683bbb24ac5f2f1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: frozenlist-1.7.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 44.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 387cbfdcde2f2353f19c2f66bbb52406d06ed77519ac7ee21be0232147c2592d
MD5 0f494fa8e8fc38e9918b6de8cf48847e
BLAKE2b-256 5817fe61124c5c333ae87f09bb67186d65038834a47d974fc10a5fadb4cc5ae1

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: frozenlist-1.7.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 39.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 284d233a8953d7b24f9159b8a3496fc1ddc00f4db99c324bd5fb5f22d8698ea7
MD5 ff12bee431522f91483d1a4f5faba73f
BLAKE2b-256 696803efbf545e217d5db8446acfd4c447c15b7c8cf4dbd4a58403111df9322d

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-win32.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21884e23cffabb157a9dd7e353779077bf5b8f9a58e9b262c6caad2ef5f80a56
MD5 2dff9531cbf639392b356ca012b47bbc
BLAKE2b-256 5af5720f3812e3d06cd89a1d5db9ff6450088b8f5c449dae8ffb2971a44da506

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 45a6f2fdbd10e074e8814eb98b05292f27bad7d1883afbe009d96abdcf3bc898
MD5 f8ab36953f0b2dd8868b29f58ffbd5c9
BLAKE2b-256 6debd18b3f6e64799a79673c4ba0b45e4cfbe49c240edfd03a68be20002eaeaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fe2365ae915a1fafd982c146754e1de6ab3478def8a59c86e1f7242d794f97d5
MD5 aedce1844833a7d4145b998b22f0ff64
BLAKE2b-256 73a663b3374f7d22268b41a9db73d68a8233afa30ed164c46107b33c4d18ecdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce48b2fece5aeb45265bb7a58259f45027db0abff478e3077e12b05b17fb9da7
MD5 8b8e27033594932b877f6ff66e0fcaf1
BLAKE2b-256 c0a4e4a567e01702a88a74ce8a324691e62a629bf47d4f8607f24bf1c7216e7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d50ac7627b3a1bd2dcef6f9da89a772694ec04d9a61b66cf87f7d9446b4a0c31
MD5 39a4601a63846a0f4814b3b757563521
BLAKE2b-256 231e58232c19608b7a549d72d9903005e2d82488f12554a32de2d5fb59b9b1ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7edf5c043c062462f09b6820de9854bf28cc6cc5b6714b383149745e287181a8
MD5 c44c7b8759c061aaaca4fb00c6062e29
BLAKE2b-256 033c3e3390d75334a063181625343e8daab61b77e1b8214802cc4e8a1bb678fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bcacfad3185a623fa11ea0e0634aac7b691aa925d50a440f39b458e41c561d98
MD5 a5cec6813f7a5896160b01ef5e2841ec
BLAKE2b-256 d015c01c8e1dffdac5d9803507d824f27aed2ba76b6ed0026fab4d9866e82f1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a26f205c9ca5829cbf82bb2a84b5c36f7184c4316617d7ef1b271a56720d6b30
MD5 907c67cf9950535ab996483ad55f91e7
BLAKE2b-256 20fb03395c0a43a5976af4bf7534759d214405fbbb4c114683f434dfdd3128ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 79b2ffbba483f4ed36a0f236ccb85fbb16e670c9238313709638167670ba235f
MD5 21c1385e713872bc231f0101e764eb2f
BLAKE2b-256 1ffde5b64f7d2c92a41639ffb2ad44a6a82f347787abc0c7df5f49057cf11770

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a646531fa8d82c87fe4bb2e596f23173caec9185bfbca5d583b4ccfb95183e2
MD5 1532e5f63ebe051548e750842b983961
BLAKE2b-256 792685314b8a83187c76a37183ceed886381a5f992975786f883472fcb6dc5f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61d1a5baeaac6c0798ff6edfaeaa00e0e412d49946c53fae8d4b8e8b3566c4ae
MD5 6261ba408ed606060c4097076b50d2b3
BLAKE2b-256 4d83220a374bd7b2aeba9d0725130665afe11de347d95c3620b9b82cc2fcab97

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72c1b0fe8fe451b34f12dce46445ddf14bd2a5bcad7e324987194dc8e3a74c86
MD5 4b44ef5a6d1f1d73b467a01858b1674b
BLAKE2b-256 14993f4c6fe882c1f5514b6848aa0a69b20cb5e5d8e8f51a339d48c0e9305ed0

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34a69a85e34ff37791e94542065c8416c1afbf820b68f720452f636d5fb990cd
MD5 169df496f616dea360dc22cf356b78b9
BLAKE2b-256 47be4038e2d869f8a2da165f35a6befb9158c259819be22eeaf9c9a8f6a87771

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b35db7ce1cd71d36ba24f80f0c9e7cff73a28d7a74e91fe83e23d27c7828750
MD5 92a7cd3d1f076fb00092a6793c21e705
BLAKE2b-256 75a99c2c5760b6ba45eae11334db454c189d43d34a4c0b489feb2175e5e64277

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 aa51e147a66b2d74de1e6e2cf5921890de6b0f4820b257465101d7f37b49fb5a
MD5 c8cbc99e257c5b31facaade464c911f4
BLAKE2b-256 347e803dde33760128acd393a27eb002f2020ddb8d99d30a44bfbaab31c5f08a

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: frozenlist-1.7.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 43.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6eb93efb8101ef39d32d50bce242c84bcbddb4f7e9febfa7b524532a239b4464
MD5 03db745b2e02eef744c54bd85ae0e66b
BLAKE2b-256 8f5ff69818f017fa9a3d24d1ae39763e29b7f60a59e46d5f91b9c6b21622f4cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: frozenlist-1.7.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 39.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 400ddd24ab4e55014bba442d917203c73b2846391dd42ca5e38ff52bb18c3c5e
MD5 0c4e92cae3a6d2e0c6842274c273c4c1
BLAKE2b-256 c5bf7dcebae315436903b1d98ffb791a09d674c88480c158aa171958a3ac07f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-win32.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15900082e886edb37480335d9d518cec978afc69ccbc30bd18610b7c1b22a718
MD5 abdd434a926212a8e1cd2af5b009b5e0
BLAKE2b-256 98c02052d8b6cecda2e70bd81299e3512fa332abb6dcd2969b9c80dfcdddbf75

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 46d84d49e00c9429238a7ce02dc0be8f6d7cd0cd405abd1bebdc991bf27c15bd
MD5 1a7f9ef393046314e16d750ff984fad6
BLAKE2b-256 553c34cb694abf532f31f365106deebdeac9e45c19304d83cf7d51ebbb4ca4d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 41be2964bd4b15bf575e5daee5a5ce7ed3115320fb3c2b71fca05582ffa4dc9e
MD5 85c498305ae2a1240d10a7c2b51e6b83
BLAKE2b-256 1ac0c224ce0e0eb31cc57f67742071bb470ba8246623c1823a7530be0e76164c

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 960d67d0611f4c87da7e2ae2eacf7ea81a5be967861e0c63cf205215afbfac59
MD5 9f53aac60df3b74f542744a53603197f
BLAKE2b-256 8f00ecbeb51669e3c3df76cf2ddd66ae3e48345ec213a55e3887d216eb4fbab3

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69cac419ac6a6baad202c85aaf467b65ac860ac2e7f2ac1686dc40dbb52f6577
MD5 42b2f976507ad16b0e8d5186f8059ec1
BLAKE2b-256 841730d6ea87fa95a9408245a948604b82c1a4b8b3e153cea596421a2aef2754

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24c34bea555fe42d9f928ba0a740c553088500377448febecaa82cc3e88aa1fa
MD5 eebcf05ea607992e91232190c7b27279
BLAKE2b-256 1a52df81e41ec6b953902c8b7e3a83bee48b195cb0e5ec2eabae5d8330c78038

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f89f65d85774f1797239693cef07ad4c97fdd0639544bad9ac4b869782eb1981
MD5 0f10cb2417fbfd46cfc23921680e24a7
BLAKE2b-256 79df8a11bcec5600557f40338407d3e5bea80376ed1c01a6c0910fcfdc4b8993

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac64b6478722eeb7a3313d494f8342ef3478dff539d17002f849101b212ef97c
MD5 89e3aa61f42af881d7d554e74c4bb94b
BLAKE2b-256 b9d098e8f9a515228d708344d7c6986752be3e3192d1795f748c24bcf154ad99

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 af369aa35ee34f132fcfad5be45fbfcde0e3a5f6a1ec0712857f286b7d20cca9
MD5 0ae028a092ad5a614c27f0f0351d92bc
BLAKE2b-256 fb68c1d9c2f4a6e438e14613bad0f2973567586610cc22dcb1e1241da71de9d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3789ebc19cb811163e70fe2bd354cea097254ce6e707ae42e56f45e31e96cb8e
MD5 038a687b8d8140a29d4475138d03f63b
BLAKE2b-256 7034f73539227e06288fcd1f8a76853e755b2b48bca6747e99e283111c18bcd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ed8d2fa095aae4bdc7fdd80351009a48d286635edffee66bf865e37a9125c50
MD5 3daaae07314451e9c927e2103d089b5f
BLAKE2b-256 1347f9179ee5ee4f55629e4f28c660b3fdf2775c8bfde8f9c53f2de2d93f52a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1073557c941395fdfcfac13eb2456cb8aad89f9de27bae29fabca8e563b12615
MD5 1c7f42430e26c40668069839a06866a8
BLAKE2b-256 508241cb97d9c9a5ff94438c63cc343eb7980dac4187eb625a51bdfdb7707314

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0fd1bad056a3600047fb9462cff4c5322cebc59ebf5d0a3725e0ee78955001d
MD5 e2a028ccd3692d140807de8bd1d0b70a
BLAKE2b-256 37129d07fa18971a44150593de56b2f2947c46604819976784bcf6ea0d5db43b

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 716a9973a2cc963160394f701964fe25012600f3d311f60c790400b00e568b61
MD5 ab314f417e86b6daed647bff17ad2840
BLAKE2b-256 77f077c11d13d39513b298e267b22eb6cb559c103d56f155aa9a49097221f0b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cc4df77d638aa2ed703b878dd093725b72a824c3c546c076e8fdf276f78ee84a
MD5 1d7b37d2522250fb7b15f3a1b0f00505
BLAKE2b-256 af360da0a49409f6b47cc2d060dc8c9040b897b5902a8a4e37d9bc1deb11f680

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: frozenlist-1.7.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 44.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 43a82fce6769c70f2f5a06248b614a7d268080a9d20f7457ef10ecee5af82b63
MD5 bbe71ab71f0a19386ef5b45f9ba38406
BLAKE2b-256 5a45827d86ee475c877f5f766fbc23fb6acb6fada9e52f1c9720e2ba3eae32da

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: frozenlist-1.7.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 39.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b3950f11058310008a87757f3eee16a8e1ca97979833239439586857bc25482e
MD5 39adfe495ee93459c42be05e7462bf8b
BLAKE2b-256 08490042469993e023a758af81db68c76907cd29e847d772334d4d201cbe9a42

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-win32.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ccec739a99e4ccf664ea0775149f2749b8a6418eb5b8384b4dc0a7d15d304cb
MD5 7e9f38a597c77e75a646a328687aedf5
BLAKE2b-256 8b72a19a40bcdaa28a51add2aaa3a1a294ec357f36f27bd836a012e070c5e8a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f22dac33bb3ee8fe3e013aa7b91dc12f60d61d05b7fe32191ffa84c3aafe77bd
MD5 4d8892a617f1616772b1ad5f8e605b9b
BLAKE2b-256 8d4de99014756093b4ddbb67fb8f0df11fe7a415760d69ace98e2ac6d5d43402

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9a19e85cc503d958abe5218953df722748d87172f71b73cf3c9257a91b999890
MD5 1c9db9be824eb222f564c110c0df5e3a
BLAKE2b-256 5e9cca5105fa7fb5abdfa8837581be790447ae051da75d32f25c8f81082ffc45

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e22b9a99741294b2571667c07d9f8cceec07cb92aae5ccda39ea1b6052ed4319
MD5 5d26b94d0f0e63b488d5af579901b59c
BLAKE2b-256 4b1e99c93e54aa382e949a98976a73b9b20c3aae6d9d893f31bbe4991f64e3a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 836b42f472a0e006e02499cef9352ce8097f33df43baaba3e0a28a964c26c7d2
MD5 b17959e625642fcbf8711c5bda5c663a
BLAKE2b-256 441e7dae8c54301beb87bcafc6144b9a103bfd2c8f38078c7902984c9a0c4e5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ea2a7369eb76de2217a842f22087913cdf75f63cf1307b9024ab82dfb525938
MD5 f7e868a3012fe72168c63569572f399c
BLAKE2b-256 7b227145e35d12fb368d92124f679bea87309495e2e9ddf14c6533990cb69218

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e793a9f01b3e8b5c0bc646fb59140ce0efcc580d22a3468d70766091beb81b35
MD5 4c93d9ccf91bef25af086b031c34e744
BLAKE2b-256 546eef52375aa93d4bc510d061df06205fa6dcfd94cd631dd22956b09128f0d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1137b78384eebaf70560a36b7b229f752fb64d463d38d1304939984d5cb887b6
MD5 0fe3adba21454dc3c0f004ba5f878900
BLAKE2b-256 fc898225905bf889b97c6d935dd3aeb45668461e59d415cb019619383a8a7c3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c70db4a0ab5ab20878432c40563573229a7ed9241506181bba12f6b7d0dc41cb
MD5 5daa31a813dbe94db5a25109b7c72165
BLAKE2b-256 0a678258d971f519dc3f278c55069a775096cda6610a267b53f6248152b72b2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 974c5336e61d6e7eb1ea5b929cb645e882aadab0095c5a6974a111e6479f8878
MD5 c7c8073afb0dd4c61a0ca3feccb7882e
BLAKE2b-256 933aa5334c0535c8b7c78eeabda1579179e44fe3d644e07118e59a2276dedaf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e63344c4e929b1a01e29bc184bbb5fd82954869033765bfe8d65d09e336a677
MD5 3ba11db4774ade96797462ff4e50333a
BLAKE2b-256 45d2263fea1f658b8ad648c7d94d18a87bca7e8c67bd6a1bbf5445b1bd5b158c

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74739ba8e4e38221d2c5c03d90a7e542cb8ad681915f4ca8f68d04f810ee0a87
MD5 fb08702263c3bdf74d2fdacd0466734e
BLAKE2b-256 ee5562c87d1a6547bfbcd645df10432c129100c5bd0fd92a384de6e3378b07c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfcebf56f703cb2e346315431699f00db126d158455e513bd14089d992101e44
MD5 159c8bbe3bae699078b918f880e1f8ff
BLAKE2b-256 b78da0d04f28b6e821a9685c22e67b5fb798a5a7b68752f104bfbc2dccf080c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d536ee086b23fecc36c2073c371572374ff50ef4db515e4e503925361c24f71
MD5 3b280923aef022c8007e1b994e0a45b6
BLAKE2b-256 75e1d518391ce36a6279b3fa5bc14327dde80bcb646bb50d059c6ca0756b8d05

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file frozenlist-1.7.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for frozenlist-1.7.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cea3dbd15aea1341ea2de490574a4a37ca080b2ae24e4b4f4b51b9057b4c3630
MD5 d263119d4059abccc22a36f21a80b577
BLAKE2b-256 ddb1ee59496f51cd244039330015d60f13ce5a54a0f2bd8d79e4a4a375ab7469

See more details on using hashes here.

Provenance

The following attestation bundles were made for frozenlist-1.7.0-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/frozenlist

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page