Skip to main content

Backport of compression.zstd

Project description


Install

Add the following dependency to your project:

backports.zstd ; python_version<'3.14'

…or just run pip install backports.zstd.

Usage

When importing a module needing Zstandard support, use a conditional import based on the version of Python. See below for examples.

zstd

import sys

if sys.version_info >= (3, 14):
    from compression import zstd
else:
    from backports import zstd


# use the zstd module, for example:
zstd.compress(b"Hello, world!")

Refer to the official Python documentation for usage of the module.

tarfile

import sys

if sys.version_info >= (3, 14):
    import tarfile
else:
    from backports.zstd import tarfile


# use the tarfile module, for example:
with tarfile.open("archive.tar.zst") as tar:
    tar.list()

This tarfile modules is backported from Python 3.14 and includes Zstandard-specific features such as: explicit modes for opening files (e.g. r:zstd), specific arguments (e.g. zstd_dict)… refer to the official Python documentation for more info.

Moreover, the CLI is available as well: python -m backports.zstd.tarfile.

zipfile

import sys

if sys.version_info >= (3, 14):
    import zipfile
else:
    from backports.zstd import zipfile


# use the zipfile module, for example:
with zipfile.ZipFile("archive.zip", "w") as zf:
    zf.writestr("hello.txt", "Hi!", zipfile.ZIP_ZSTANDARD)

This zipfile modules is backported from Python 3.14 and includes Zstandard-specific features such as the constant ZIP_ZSTANDARD to be used for compress_type… refer to the official Python documentation for more info.

Moreover, the CLI is available as well: python -m backports.zstd.zipfile.

shutil

import shutil
import sys

if sys.version_info < (3, 14):
    from backports.zstd import register_shutil
    register_shutil()

# use the shutil module, for example
shutil.unpack_archive('archive.tar.zst')

Calling the register_shutil function allows to create zstd'ed tar files using the "zstdtar" format, as well as unpack them.

It also overrides support for unpacking zip files, enabling the unpacking of zip archives that use Zstandard for compression.

Alternatively, call register_shutil(tar=False) or register_shutil(zip=False) to choose which archiving support to register.

FAQ

Who are you?

This project is created and maintained by Rogdham (maintainer of pyzstd, who helped with PEP-784 and integration of Zstandard into the standard library), with help from Emma Smith (author of PEP-784, who did most of the work of porting pyzstd into the standard library).

How is this backport constructed?

The aim is to be as close as possible to the upstream code of CPython.

The runtime code comes from CPython 3.14, with minor changes to support older versions of Python.

During the build phase, the project uses zstd (canonical implementation of Zstandard) as well as pythoncapi-compat (which handles some of the compatibility with older Python versions).

Tests come from CPython 3.14, with minor changes to support older versions of Python. Additional tests have been written specifically for backports.zstd.

The type hints for the standard library have been contributed to typeshed and also backported to backports.zstd.

Why can this library not be installed with Python 3.14?

This is on purpose. For Python 3.14 and later, use the compression.zstd module from the standard library.

If you want your code to be compatible with multiple Python versions, condition the usage of this library based on the Python version:

What is the status of backports.zstd?

The code currently comes from CPython 3.14.0rc1. As a result, changes may appear upstream as we get closer to the final 3.14.0 release. We plan on releasing version 1.0.0 of backports.zstd together with release 3.14.0 of CPython.

However, this library can be used without waiting. At this point, backports.zstd is considered feature-complete, with support for CPython 3.9 to 3.13 (including free-threading support for 3.13). Support for PyPy is not yet available. See our roadmap for more information.

I found a bug

If you encounter any issues, please open a GitHub issue with a minimal reproducible example.

We will check if the issue is with backports.zstd or CPython. We have already reported and fixed a few issues in CPython this way!

Project details


Download files

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

Source Distribution

backports_zstd-0.4.0.tar.gz (980.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

backports_zstd-0.4.0-cp313-cp313t-win_arm64.whl (273.7 kB view details)

Uploaded CPython 3.13tWindows ARM64

backports_zstd-0.4.0-cp313-cp313t-win_amd64.whl (299.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

backports_zstd-0.4.0-cp313-cp313t-win32.whl (273.7 kB view details)

Uploaded CPython 3.13tWindows x86

backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl (483.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_s390x.whl (614.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (569.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl (495.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl (466.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

backports_zstd-0.4.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (479.0 kB view details)

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

backports_zstd-0.4.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (624.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

backports_zstd-0.4.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (565.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

backports_zstd-0.4.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (459.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

backports_zstd-0.4.0-cp313-cp313t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (491.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.12+ i686manylinux: glibc 2.28+ i686

backports_zstd-0.4.0-cp313-cp313t-macosx_11_0_arm64.whl (350.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

backports_zstd-0.4.0-cp313-cp313t-macosx_10_13_x86_64.whl (430.8 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

backports_zstd-0.4.0-cp313-cp313-win_arm64.whl (273.0 kB view details)

Uploaded CPython 3.13Windows ARM64

backports_zstd-0.4.0-cp313-cp313-win_amd64.whl (297.9 kB view details)

Uploaded CPython 3.13Windows x86-64

backports_zstd-0.4.0-cp313-cp313-win32.whl (272.8 kB view details)

Uploaded CPython 3.13Windows x86

backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (479.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_s390x.whl (616.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl (570.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_i686.whl (493.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (465.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

backports_zstd-0.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (475.1 kB view details)

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

backports_zstd-0.4.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (626.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

backports_zstd-0.4.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (565.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

backports_zstd-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (460.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

backports_zstd-0.4.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (489.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686manylinux: glibc 2.28+ i686

backports_zstd-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (349.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

backports_zstd-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl (430.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

backports_zstd-0.4.0-cp312-cp312-win_arm64.whl (273.3 kB view details)

Uploaded CPython 3.12Windows ARM64

backports_zstd-0.4.0-cp312-cp312-win_amd64.whl (298.1 kB view details)

Uploaded CPython 3.12Windows x86-64

backports_zstd-0.4.0-cp312-cp312-win32.whl (273.1 kB view details)

Uploaded CPython 3.12Windows x86

backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (482.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_s390x.whl (615.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl (570.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_i686.whl (494.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (466.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

backports_zstd-0.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (478.3 kB view details)

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

backports_zstd-0.4.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (624.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

backports_zstd-0.4.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (565.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

backports_zstd-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (460.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

backports_zstd-0.4.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (490.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686manylinux: glibc 2.28+ i686

backports_zstd-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (350.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

backports_zstd-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl (430.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

backports_zstd-0.4.0-cp311-cp311-win_arm64.whl (273.1 kB view details)

Uploaded CPython 3.11Windows ARM64

backports_zstd-0.4.0-cp311-cp311-win_amd64.whl (297.9 kB view details)

Uploaded CPython 3.11Windows x86-64

backports_zstd-0.4.0-cp311-cp311-win32.whl (273.0 kB view details)

Uploaded CPython 3.11Windows x86

backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (479.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_s390x.whl (615.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl (569.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_i686.whl (493.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (465.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

backports_zstd-0.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (475.2 kB view details)

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

backports_zstd-0.4.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (625.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

backports_zstd-0.4.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (565.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

backports_zstd-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (459.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

backports_zstd-0.4.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (490.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686manylinux: glibc 2.28+ i686

backports_zstd-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (350.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

backports_zstd-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl (430.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

backports_zstd-0.4.0-cp310-cp310-win_arm64.whl (273.0 kB view details)

Uploaded CPython 3.10Windows ARM64

backports_zstd-0.4.0-cp310-cp310-win_amd64.whl (297.8 kB view details)

Uploaded CPython 3.10Windows x86-64

backports_zstd-0.4.0-cp310-cp310-win32.whl (272.9 kB view details)

Uploaded CPython 3.10Windows x86

backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (479.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_s390x.whl (615.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl (569.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_i686.whl (493.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (465.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

backports_zstd-0.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (475.2 kB view details)

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

backports_zstd-0.4.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (625.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

backports_zstd-0.4.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (565.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

backports_zstd-0.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (459.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

backports_zstd-0.4.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (490.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686manylinux: glibc 2.28+ i686

backports_zstd-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (350.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

backports_zstd-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl (430.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

backports_zstd-0.4.0-cp39-cp39-win_arm64.whl (273.1 kB view details)

Uploaded CPython 3.9Windows ARM64

backports_zstd-0.4.0-cp39-cp39-win_amd64.whl (297.8 kB view details)

Uploaded CPython 3.9Windows x86-64

backports_zstd-0.4.0-cp39-cp39-win32.whl (272.9 kB view details)

Uploaded CPython 3.9Windows x86

backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (479.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_s390x.whl (615.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl (569.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_i686.whl (493.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (465.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

backports_zstd-0.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (475.4 kB view details)

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

backports_zstd-0.4.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (625.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

backports_zstd-0.4.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (565.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

backports_zstd-0.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (459.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

backports_zstd-0.4.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (490.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686manylinux: glibc 2.28+ i686

backports_zstd-0.4.0-cp39-cp39-macosx_11_0_arm64.whl (350.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

backports_zstd-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl (430.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file backports_zstd-0.4.0.tar.gz.

File metadata

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

File hashes

Hashes for backports_zstd-0.4.0.tar.gz
Algorithm Hash digest
SHA256 15b159dc723a95e814350d050307bb89a3719ad336c56496977b05e8ff61a2c0
MD5 c735354a9b09d65bc11e4ca2c6d28c89
BLAKE2b-256 dfd0c3edb540ed179a3a21e840c38326f84c2ad4c4a2a5a466f952f52eee3e10

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0.tar.gz:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 4271cec8962580dc0cb6356d1d342af6fc39c4eedf4060ad09c1c39be24aee7f
MD5 ca1706d66bffafb8ce04340892787f7f
BLAKE2b-256 06a9b219a7354ed08c612dc2795ad68852f1ba595c40906bcedb7046f3e994a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313t-win_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 06843d5d48989b3679eec160fac82226c5ceffa65d6b1a39784aae160333d228
MD5 73f2e4a0cfc813df62476eabd905e1e2
BLAKE2b-256 37cc3880f2f92b34693430ef906e26b65bccfd737818cc737052488b9114f5e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313t-win_amd64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313t-win32.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 ac7f8618a7115f230fd55deba1ccfc825b305f3a57469a50dccfbc31326c10a5
MD5 a9f4c3eb4af23d5e36f0583fa661b596
BLAKE2b-256 b9eb3c4afb454ae585a00454282c5806eddd495d510b2118e747fbe84a6c3709

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313t-win32.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bedb4c8cd7c1148a89ada692627e7d22ad81c0f1bdb522954b53b159e6614bd1
MD5 38595cd4338dd9aa3327c3e21e728295
BLAKE2b-256 f2e6f386237b8408035e68d6a9ba4de323251dccca6900d63da5d973597a271d

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 eafe949fd1f730f958bb8ed3e71b8dcaa075a13473ba433269c84c902ab97484
MD5 d3efcea30b1ffabfd3ae8c08d023c31e
BLAKE2b-256 34fe20348995e275af6850346fd0f4a24a96425c5a9d2d122e8e64a41a8d7725

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f2c1db76ebc9d0bb3baa5c8e019bdfb1ae47d044bbd3a354c7977b95a81794ff
MD5 c35d0353c6ea47abac66089265a7e8fe
BLAKE2b-256 e41735eddb235bd0c6aad58c385249c374a0be75df5937b814f740da8add64c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c7dae5ad1070aaf2215666e81da3389423d199946f1b5586464b01f8d5b429fe
MD5 67ad9a317c9a2609706fd90310f8cdc1
BLAKE2b-256 b02835b806068518b619bae5a312fcf9926c9686e8b2715f20b417bad0dc5287

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce1e5df0d78813d73e682c2604015d6805a9ad54d9f41522e9d99a50fb96b7fa
MD5 f29e85d19a4d933e8ee840562bbc4c4f
BLAKE2b-256 8a23a168bd45ae79f8c483f4b8a8ee60c3c85a57aa8e566b860dd063bd4087f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b207a594938af49afcb73eba07ea6bd11dc8d88437125df5612fb9d138338d5
MD5 f477e420fc3c928983b9e2b68bb8b82d
BLAKE2b-256 708539f0140dafa3d177ecb4c23624f246a45887b23c55d722f27fb2ee8c4d78

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 71b7ad30c840672d01f6157e607002191c435b7fcab05333a1c1d87cbeb964ea
MD5 b15a0149cc9295f342c24e6a515ff335
BLAKE2b-256 7e23c89089f45d624a65ca5d144d8439bbf5bc29cd0df5de73783792a88ac709

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 392440c175b42db71d48a9364e01f4aa3ccc79138bc04fa95b445a53b2ca6e0e
MD5 f3094b192633369dfd8ff6e7fcfa1ddb
BLAKE2b-256 3a2810c1aad8104f8aade81c51eeab4235b016f74d94217a90f17b9838cd3b74

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 061627b662b446cdf0d41b9974d9b63f70179863f9b1b06e2216207ffbced5ed
MD5 2fa5c27f27ebcdd320f2f7d38e1c4e01
BLAKE2b-256 1fe42583b4f0b46e4ee31c709d98280a5952f75400bac9b6f45d3175641e2bf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 db01adee2651d8931c668be29df26b115cf839c3af0754bc7700c564332c5f95
MD5 61a4e79ea116fa06e9f8a3ec72364580
BLAKE2b-256 159903128ec346eff24a860d5bcbf6c57bf2cd7c112c656345b628bd232e68eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8f9321a8889c315ca987515e5bdbfa8905674785caa5df7e4888d45dd3009dd
MD5 e1b6c9db32638669dc4f99208e8b9ad2
BLAKE2b-256 302f8fe66402198f20f877030f5287395a2d64c1def3be2162088a92420a5ea1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 39b7646a0eec3e22444052b6f2bc60d2a2b49ea260096a32b01ac8f33c0546ca
MD5 477e7b88afe94f20c720e7cecd31d5d7
BLAKE2b-256 c08d64f7f31dc79edea63d6c22c17d9ccac8738d1d4570498f3f46ad155abc7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e5ebf0866db53450e8833fe598a600dda8e7cad57004da71cf24648542f2c6a9
MD5 bea32ad39c232991c9968ffa46160e03
BLAKE2b-256 cb085b8544cfa068ad940b25f4a886a203e7740470e79dc197e6b2710482a87e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313-win_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dc004189ed057ca0bd12b8079aadaa149dce62251faecd876d51c7e506ed5753
MD5 36272ebe033c37a3f5f0b08f2ae97fb4
BLAKE2b-256 29754cee97da34762f23915d7e9589a0bd469a63d078cfe86e7dae8094d5d8e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313-win_amd64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: backports_zstd-0.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 272.8 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 backports_zstd-0.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5c534f79b9c31ec467b80bd92353e46919810d55b7137d77777ea16ead603e13
MD5 9f481ef36a4b1607787df232e7c9e68d
BLAKE2b-256 774db9ea2441c236da34f092db940990a937d0b542e897727e5f3ca4a4655ab8

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313-win32.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 932114521e6c20fbfccd091c77205f813f09db7f18135306cd8dbca53aaf21ce
MD5 927aabce5655db49d9c63970e62d0ef1
BLAKE2b-256 7974da7994ff654a2fdfa6c2e2782461c1fbb5c131c84d502f3efc07207ce5f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 13364b9dc049611041268ea933b6b80e3582de898b701f96bdb47a1411f2f2ed
MD5 eef84cd0ef75f7a19da3a40663421d27
BLAKE2b-256 ee2227a2473246b01216e5b15c4eefe4e2362ba42458a5b46ee5dd8f443d0447

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d8b554cd4d806709ed227e2a838f3978cd0ae0c2aa0f97f528fbe962cb1215c3
MD5 6aa85888a187e8856ffec8a82539b3fb
BLAKE2b-256 1093314a8a8829cfa79868258e0812ee104b6f75c9862403c4fa77c39ac386a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9e2c93aafbc12f5a5eef26d888dd256128f7f0518389f40a8e6b4165a833f5b
MD5 5f0d8cf2246201434555106367365621
BLAKE2b-256 257795bf81145869b7b2f6a4d249c5fe72ae46dd0a007dc9e946157a7e1b8184

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 867498fded45b35266ba6a3afdae67a87c89b00b9f944ed71249239e1eeb84c4
MD5 527345b29f6f2f8f617fc283917aa7b0
BLAKE2b-256 23d75dc90e7adeafd64c905fe0cdd71689dd17f40c694a57260bb7d062007e79

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9af7d2cff5fdcecd46e018bf736224aadbc6d19fa1e6b0a41741bf55cbe4b929
MD5 f66e937b276783248e4a6f3a749fc6f7
BLAKE2b-256 56caae9796e7bb713b7fbb5314b96ed8026107acc07f10144214070f520ede31

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b4e1ac5675352183f7cac65d06851e8155c956d617c331a5683c1ff129a71d23
MD5 d19c6e819715261c73f7561ae1fdcbc7
BLAKE2b-256 75beb8b4f097e4d605cfe4b28491c167853c8163af796b8a63600d26ba465759

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bcdead1f8ce7bc77d37d38d57cb08115a2857e404a0a669956d468d953fdd6be
MD5 9d805e87f51983a56c6e16be4a7a057a
BLAKE2b-256 4bc33a2e047e5e0d3246227899af59af30430daca500a599412795e4cbe57979

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 244951fb885ad78713f47688f5168f51f56f2d84f57129c831ff01889c038cc3
MD5 c7cdc0b9e7156418f490a471316472c9
BLAKE2b-256 4e889d7eef4bf610f2aaec60a419896ab3740838a4efe93c89b413c694861868

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 858ac00dc7aac35fc266ec21a0c32fd00d032df543c003e0d5d9969e55d9e6da
MD5 85fb04b31242a41e6d3dfa4b979e8b90
BLAKE2b-256 503559c4a4d5210069f676187da4a8af8fe0f3fb48405ab5977d17b0596418a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5729eac13590035463e7fc517e066962820f188c6b13bb5bcf41ebe4439e50e4
MD5 aaa9d911ed3b8b25333cb43df18efdc7
BLAKE2b-256 55602ac265b21736035ff7d1882c6e2b115d93dde41de9ff2c9ac9257e88035c

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1dfb9d6938e1bf78c3007b1475023563e3833f2382e5e6d4dcc8b3d78b44d6e2
MD5 df269f112ca549da9e069502da3856c8
BLAKE2b-256 789a3810227f9bf0ab53773f6dd519ad5a9558710994a790585055c6a0a9c133

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9e59da60bd80c4b6b8dc2b527cd522f1144c87b94e0d8feb5f769c57602e1a9a
MD5 676b92ef5977d97f3ba3fc27a49857db
BLAKE2b-256 ff0ac6bb5a9c0b9deaf0adb316bed1ed84ee9728e756921cf157e61d646c8822

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp312-cp312-win_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 62c007910987a549d8ea733222b6be8466faeeec1c36fc03954342c23a9cb903
MD5 b9d179ad615c7f3061b2cea246d08174
BLAKE2b-256 5e5d4bc97092e67ddf290eeb86ff00b95825aeb4afc8907d8ed38e792533a0ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp312-cp312-win_amd64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: backports_zstd-0.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 273.1 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 backports_zstd-0.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 65a4607e3a7eed7078533b12f8afcbe72476a0c9a3b2312228e89bc6f23d6c60
MD5 6553a27979466b9880a28f23f06d907f
BLAKE2b-256 ea33ada3bfc08c5d53bad243540a237456c4590027f9becd00ec250969bf6d55

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp312-cp312-win32.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 018a94c78aa1aa71c7f19e3c5d02bc88a1db398cfd163d7252b6a2385249cba8
MD5 45b959636fbfc0942cad90749a98cbed
BLAKE2b-256 7900a12495492a886df80cafa7df4295ebbfdebdb20ae0b94c3401b27ec0342f

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5418dacd275b3425f1dfcc3304555741199cb6866bc81a918834c94351595a82
MD5 e859af2dfcc91ac061a62d273ba5b93a
BLAKE2b-256 5765c2e4c4697891e74a6a73f527eaa08971cac4e9b7884a3b3322fba7a1f37c

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 95ebe3b44fe2283c6f43fbb243a6e8a81fd6932d9b2801b115e021e31fe50e7f
MD5 864aefa4d3dcbd29a55e150fcd140da9
BLAKE2b-256 d0f2722e208dc71bd069dd074c236d75e6cb4a1dad2b3ba3028b292439a978a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b73838b662eff36208395e9df21c86c71ebdfbfc063377db6400b002c1ee1a4
MD5 94f490091949a10e2cc869cffa587396
BLAKE2b-256 093b808f224142150ced963420dfe7f5eef8e37101809c93d49d73d6cb4c0c64

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41a05c3f55384975a90507a8b3ce7480c6710438cf50f16501cb8984ec4eede5
MD5 6a3d17cb5f8fa701e3868794e2b1e1a7
BLAKE2b-256 bd50abf8dc6f19f263a16772682f88ca2f0fe692de953e5324da854522e450bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5ae8d478ab2b6b45b57d1a9d1449461e47f868951058f8932188de3cd0b42b05
MD5 837d243015b00159a40e4a51acf686d5
BLAKE2b-256 5acd1bd4230da3cb49ce97363a4b285a429804989375a372a51fd1c45f5adb93

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c488e6fa091820fd9fee45591de6e5c61f64646d57d10e34bd2a962aefca20d7
MD5 716adb4bc30585beb426273327db8b1e
BLAKE2b-256 51dddbb9e4adbf55bebc923be25f76394e6e31333e338f1cfef1e9f282cdaa24

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c677017cdaa447f47103c81a4f3a01668f6dc0f494c4d0f7f3f8db401e786412
MD5 45c16612ebf6958647029a6d32a80664
BLAKE2b-256 6ca484fe0489889f86aec3bde01d0e26404caf4103f8e16e291b12382ae89a99

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8df99afa2e237582e390424c5eacce6afa56e031dc4751270f22d9c378349146
MD5 25047434a918eeffbf0e1574d540cdf4
BLAKE2b-256 0ebc17cee0fc3b9ef924b415bdc122488e43c088897e68e87a5dcb14a24e6628

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 c2eef170ecc6cd129f16a2a69ce57b58762a2867a050a6db71bee3708cd7e75a
MD5 3d0a8b231258a5f7b8aa5919c1e7c181
BLAKE2b-256 a2ebf5a7857f0602b2fc673fe5fd9667dee9b69294de230802c96690832582c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 334bdb23bb8b082b4d412ac84bfafa46feaf4b5f79baf68ffa1d57f3a00fdba2
MD5 af7c4f7e61e34802f011570d0fea1213
BLAKE2b-256 4405bbda3e17e33a3a1efcf7aff00d433992d6a44f933dddb2cf8295bb1ab80d

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 94c804b655133335b5e65278e1e9dd55c8d4effad088181ea6c40dded2d875c4
MD5 d9d7c4fa0cc67d4c3c02866a5f8277c2
BLAKE2b-256 53ed430e6b29ad3f662633536e468664984054f899cb31fa60d113e1d2897d14

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4818c379f6de8edd760bd6fbfd31511bfd2b214e0564ff137015a5dd5225d894
MD5 5631fa9b82725e52cd5d988633d18ec0
BLAKE2b-256 cd950ca623b76e7a65a33f47c91c6da5146cd0299864c68f1e3a58e1e9ec38a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp311-cp311-win_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e6520b9e1ad8738b8f1220685ecb212a1d771a950e6e355c8db04d6095725ea8
MD5 292eaa219c171bbad0f4f962a41b2c75
BLAKE2b-256 59d5e4cf71eb2ca9030043eecd9499d510c8339bd4f03826fb5ef4237e3d0bad

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: backports_zstd-0.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 273.0 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 backports_zstd-0.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4c1717a14f020678d018d7d39a3c1e97dfe96d24b16c40c09f75940dd9d61614
MD5 b29c9601ba25890edb0f730a5d6e579a
BLAKE2b-256 2c619518015e134cb26f1e7f96201fee6cc64c895eaaf1f7e78a77ffa0d88256

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp311-cp311-win32.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0af7d89930f3c4c4e5e3f14489f3d3ed1d55cbd52c479a31be8c91aaa6bd8cb7
MD5 21f1961e66258e516d0d20bba075cba1
BLAKE2b-256 1e822b91965d397b530a3bdc4fc4d270f138ce46fdb789496a93bf10bfe0dff1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b8f736ddf63e25ab4cc15b943ddbe0c29bf91e72789994a638f4b17e4ed29ce8
MD5 a141350a19f5cf4238b75c53d2868715
BLAKE2b-256 21f3ae23885d58bee12c62fdf0e51edce5acdadaa4afa7b1733cb13d70ea7be6

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5fe642e5b7cb97075b335506fd6b8a8455e1686b6047cf014adbae2c2ca98430
MD5 4747811ea11900e6967e4a54d1e0dfd5
BLAKE2b-256 f9fa63bcfd266e9b0e90df4c6931c99395d0c593f901f49c4ef9777e78fa1474

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b5e359a1e04898cd0669dd2ae1f3321ae3d5f6bc48b1c0ae2e981d6f15a2a7b8
MD5 2772e74ed0485d0609ead777bb83d2cf
BLAKE2b-256 560c32cd5dab6d83b482bc6fe808aa2b2c6550fca5690b7a816d2c3b6c83ef33

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1e7251fd42367e5ca611f8e4ca5cc22a64b63cef8a44761c9221aa3c1df7cd4
MD5 edc152d71fd880595922e2df75d3c997
BLAKE2b-256 7f4d30cd2ce39e0408ef8d4fff36adca25712e0d0720d7b4ed776a8e516f3527

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2195b58680c1038f5beeef5a8c357f1360dc29fb3ef05368c3288c98153aad8b
MD5 ea969432e58e12395c7d50f74f61ee69
BLAKE2b-256 bab2ba63fc6944217b7ebce6d6c5bad40a99a86e3ba4a91ee4b41d7309d3ade4

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 90ebac9ddcb99a8b89bf48e38ef1eb2e3bd07e26344303854bfb0531fc69dc87
MD5 d05c4848971603f2fe5205742dfc200d
BLAKE2b-256 d93592507a04222819f9f0e63c40de0bfb5aa5bee1edfc3bf75c6a20868a6d48

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 de8c6e58d03ce78d737630967a0304a3cb873fb1165cf8c528e0c937597eace4
MD5 af0c6306144d8043d34e3a1c4625630f
BLAKE2b-256 db927413701bd4bdbac375915ddbe464e8b9ff87dde774aa22d22140a6be523d

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 988702a60941a8d0b3a19a9adf4b6666322529cb198acedd6a0abab601d0be4d
MD5 6aa591b1c6377659d90ba0557287440e
BLAKE2b-256 e551e59c0765f0de69763e5bb8ca610e84e6de7cdd2e26858d207cdea96067c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7dd2f6c2c2034466f656a1f53e276fda486f656618b3fc70cf17d7f9e63eea8a
MD5 8b20f7898a09fe818caff552d306c8c5
BLAKE2b-256 3db00ceb75b29b5444c424fae1e856dedac2bcbd383ece36ed5327f1712da1e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ff6252d219376b4f545ee12edd7f93c0bd2e136453da6b26dbe0ca6d22fd700
MD5 ad84711024b7d449ff6e92aced24d3d0
BLAKE2b-256 5aa62a219f35edf5cae9cb7b2be9d71520e60a1ec272b066051bdd3a8aa925e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 63270ae491f3b6e8e9864bc353ca2e1b0d0b39b6796fe60a52c6f02078896954
MD5 bb905b45cb96675ddfbfd44274af2804
BLAKE2b-256 5af926bdbc722ca436e398843349bf87faf4c5302da3ed54bc4b79333ef8a07f

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ff9701d1216e38b98731207b0ab383ef450f58bfdacc4f1bc376bcf6799f31ef
MD5 b71e04a3f373baf09cc6f05d341e02a9
BLAKE2b-256 ebad4aafca60a9725c1cdeadf8d9ba07166ae306ecb734317c67a249251d4157

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp310-cp310-win_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 02c84506b0be23f6e7db261634b27e02cb71a0352ae4e8c40506a1e3f6431390
MD5 ebd573af232799f716d935c2a3cc413f
BLAKE2b-256 05b7d4828c06bfc97ec1dcdf4fb5c0a36fd280b7e3704af6d7546109967f076d

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: backports_zstd-0.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 272.9 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 backports_zstd-0.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d239311be382a33860514e9efb3f9b5b53954d3bdae0eb50752ed13d08714339
MD5 a6acd43fade12e82527fb173a6ec288c
BLAKE2b-256 1d8de96aa28f53b6beeb89ae0dacc0726a9603d81356a552fc28dc000b8abedf

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp310-cp310-win32.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 653fc8538bbecb5332093070a95c71cece9ac64802f213a06169c1f0dac35f5c
MD5 46149f30b7b578359fa3d10a1c6c112e
BLAKE2b-256 5a96a9638b406758343fc0a38e0101412dc499f314dd73fb171bcf32640e8937

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c3dc06f2d6dfa27ae643f77ef6eed81c77674db921ed074bfc77f62096aa555d
MD5 7890c6ba49650bfc751a4ef36c0a1dc0
BLAKE2b-256 6622d68df0936744df0e4965f01b3b045ca5cb358c4e9566557a8b35100b163d

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 991b96767edda5cfe3db46bbd6d085fef86217317bc19093cefeb4ecdfd1f842
MD5 4c98f4b1527a48a3ae4ef628cd2b32cf
BLAKE2b-256 ed8c2926caff940cf5b8d7aea87b245f549b3cb0fbc8a1289ee601a3d592e122

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 af3d857c7e5b5dd1140dc20a59074c3672cc911f4850fa80451f686818a2f38f
MD5 08f9a5e8d0fb3173833cec958e1673c9
BLAKE2b-256 841370ad32bd6d7f76e4c5fd3ff638fddb9027b8ddcca8388426cb1bad8a61f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a810814f1be868defc4806e3f25ced10be99815fd508cfe19cd2e879ac86c0e5
MD5 94c575a7ac9a8a9d0bf53c8fc4cac1f8
BLAKE2b-256 c6e05c3e515cccce5d7b19dfe73e7ccd1142644c086e1f4d34cdc08030da28f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a55e88738014eac61b7dc4540fa16c4e48fab20ec4b7c7e637ae553668731d5a
MD5 f05b658364924beac22438bfeed1665e
BLAKE2b-256 bf94ea2070213353202d4f6b64801e0fa2e477c9c6fc4710f4f6141152a00fad

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a14a97b221ef91897698ef3103590eaad478b393698ea72dd99d50469af52a31
MD5 39f9e6b2b7deed3c8fa407c0e1092ca4
BLAKE2b-256 126ad562d5b547d9901f903da930b5406a7daae32ea7f9e59b5e5de109b0ec44

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6f766fa571147ab1470f7cc18659962c04be7979a0de44c963db4da3d4d5a1bc
MD5 bac76fd55b7925a3151af3737dd6df5f
BLAKE2b-256 10599ca1f2d3957c218dfda9dff0ee653aa4f8875ba8ffd7b420af972389e7e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8fce0cd580c88b834aa7cf08479f766eed266082108081c4fbe1f23be09e4f73
MD5 890d7b05cf3dea07a2b82661e1fa188b
BLAKE2b-256 62c96e95896dc17ec0babc185591eebb01596070e3a6b40c371289839688d846

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 73d4d2a521c87e01fac9a63ff59615cadde203d3a4fcca7cf921c190478ae3b4
MD5 bbb526575d838521c47b3dd1954e1014
BLAKE2b-256 bf2200a5b0a56b2dfc0281498cc4871c4e3899b1223a231ecfab5daa2c867ff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3eb875c7c12fd927d20f279d43a5c9bd0533b51762fb6bc04d92a5adf10523b
MD5 80bd9b64a8274cccd3e2fa4515f5c34d
BLAKE2b-256 dca3cc88cec92b8d9032d5b5fdc53578a3734b252424a6593cdf56415d34b266

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44de248a2583ce1248087fadf284b13a5c00e5745284251d17d298447ab088f5
MD5 7412167e5936dd3094a74c62c1ac50ab
BLAKE2b-256 0b649388d879a52ab243512537d1dd09451288f9fb8ff62becceade2af2c7ded

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 74e830763eec9af868f1d0ead2849bdf217542a27bc2fde0e7e038c2554c1ea2
MD5 c3326d7348464c41cc2288f6fcc30d25
BLAKE2b-256 a12f431b56375d2e46c12339c54cf650ff0439bb14866ba615f842d223aaf86a

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp39-cp39-win_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 db0c4c5864843a5bf80cc7ebf4446fb7d73d85b17095d579875e2e6a576d32d6
MD5 f16620d16f1a3b4de73080acc4fdf6c3
BLAKE2b-256 f25e55c7289f177d4a1fa00922d1efab551bc06ebfde58569f2a6026c3c928c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: backports_zstd-0.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 272.9 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 backports_zstd-0.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2e4eae5fb81de43cf450f8182cae0eae2066c41e8903640ba43df8f7411afbdd
MD5 a0920d9371ca63fe15552584ffd6bf44
BLAKE2b-256 913c49e481fa2587ef9fe87733fa2597bb8c0ed39e589f52d7401bfec5fd1151

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp39-cp39-win32.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49c39209e0fe2929ed38bdc80bb4cba3d76cd402a764d2334e3859c54891009e
MD5 4f2e96d23c6cfd0665ae9576acd541dc
BLAKE2b-256 cefe4641591319017e88c8cc206d7378de38e4bcda0b68e77639939bebfdc0e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d1832f945d78fbf26a95b5dfd600709d2c919a126fd4f6c9cf7b431c4771b97c
MD5 fe3068b5d3b94332eee537aef5a8f350
BLAKE2b-256 814d59a85641a98a0a262b64dad9bc53824995c0b0eb6b0a2a1f0934e92ec3ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 73f4b516e73a19c186146b766db06992f6bf781b5fb906ba7138b96458f09fd6
MD5 202afd2a1e89977c593b341fd2dc4763
BLAKE2b-256 d05484f78f49c331c0ec6e10c1d310634ca7236e2930fa786ee72c695520d32f

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e390fee836a95ac561ec3610158f2236440c80bf368ec498e1fa272de93ce6f
MD5 145b8ec1d635c768ed1ccacd74a7276e
BLAKE2b-256 357d957a9b13c6a53dfd1fbadce0130193229cfb33218032932ea4e913ced3e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96b16f40ca2eedf7531d988707cf04a5337b848b4a70f018d4c9bf9179be185f
MD5 fb509293b7794b2137e3eed298086bd0
BLAKE2b-256 cd934e5b1344410951b2b58302c2cb2d19664d5ec3f20dc70b39d9a43aa9047e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ab037ac42911ab1f7dd35c99080cd01e6cff92de4c59d1340524697c0038472
MD5 e7675a9574d5f6360f2e6476efc82744
BLAKE2b-256 72b6ef480726031015f6a494ecfcd50a889374a87f025a50f47af3f27d79fc78

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4fa053f9ae69ee0ee3e1c83403599f5a7d83c37ceaa16fc30509aed9dd0c25eb
MD5 3c678d079f838d14b3e493a1de85bb9f
BLAKE2b-256 ac70da67d14542d3d614160a2c690d138945c7e2ce1af70be9b34ea85b59b17b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1ffadb5d847bb5e853c19d881bf6ff4e25a3d857d20e5206bd05670265d8ce71
MD5 a0823e433d8a9dde135eed45fbb3471c
BLAKE2b-256 b32bda69ab5a2bc2ef4d84a85ded32b966eb01d1d352bc414bdd20a3614be130

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be4c92b7d7e1a43a0f2ce4e05209ffcc06c8e65cf9cd06e89115c5b023fca193
MD5 58714032c93bd6a7d25c29b696f29e0f
BLAKE2b-256 fc8c1e6b3c35b61bdaa9a353ec8690acda7b43c33e99bbfbf994b83c91819785

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ae0a8d031a596512b7b090f374501901bb24dd7d55583a268a813badb34cdfae
MD5 56fb8ba23e648f34297dfffba994719c
BLAKE2b-256 99b3dabbdad13f5218dd6ee45a9fbbf4e9310e9e672d818eea5ef07857bc84b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9eea84ab23f025f589c34f9c8aff852983ecd517445d39207e90d0b60178808a
MD5 4d11ccfaaaca4aaa7764528785e6ebbd
BLAKE2b-256 260cb25aaa0a42542900c5abba277997c2a30130d8a237c0f691464562259c04

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4393db7ef36a77de0f36c67251800612fecacbbce7e2a211f4581237c70d6fdd
MD5 f6bc8ff99b62c13487334bdba6322cb0
BLAKE2b-256 72204321dd2fca380828e18d678f091be9262f918c336d224cb15032d8878342

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build.yml on Rogdham/backports.zstd

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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page