Skip to main content

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. For PyPy users, the C code has been ported to CFFI.

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:

Can I use the libzstd version installed on my system?

The wheels distributed on PyPI include a static version of libzstd for ease of installation and reproducibility.

If you want to use libzstd installed on your system, pass the --system-zstd argument to the build backend. For example:

python -m pip install --config-settings=--build-option=--system-zstd ...
python -m build --wheel --config-setting=--build-option=--system-zstd ...

If you run the test suite, set the environment variable BACKPORTSZSTD_SKIP_EXTENSION_TEST=1 to skip tests that may fail when using the system library.

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!

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-1.7.0.tar.gz (1.0 MB view details)

Uploaded Source

Built Distributions

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

backports_zstd-1.7.0-pp311-pypy311_pp73-win_amd64.whl (316.2 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-1.7.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (415.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

backports_zstd-1.7.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (395.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

backports_zstd-1.7.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (422.2 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686manylinux: glibc 2.28+ i686

backports_zstd-1.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (344.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-1.7.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (413.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-1.7.0-pp310-pypy310_pp73-win_amd64.whl (316.2 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-1.7.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (415.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

backports_zstd-1.7.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (395.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

backports_zstd-1.7.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (422.2 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686manylinux: glibc 2.28+ i686

backports_zstd-1.7.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (344.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-1.7.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (413.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-1.7.0-cp313-cp313-win_arm64.whl (292.2 kB view details)

Uploaded CPython 3.13Windows ARM64

backports_zstd-1.7.0-cp313-cp313-win_amd64.whl (329.6 kB view details)

Uploaded CPython 3.13Windows x86-64

backports_zstd-1.7.0-cp313-cp313-win32.whl (292.0 kB view details)

Uploaded CPython 3.13Windows x86

backports_zstd-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (497.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

backports_zstd-1.7.0-cp313-cp313-musllinux_1_2_s390x.whl (634.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

backports_zstd-1.7.0-cp313-cp313-musllinux_1_2_riscv64.whl (565.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

backports_zstd-1.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl (587.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

backports_zstd-1.7.0-cp313-cp313-musllinux_1_2_i686.whl (511.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

backports_zstd-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (483.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

backports_zstd-1.7.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (568.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

backports_zstd-1.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (492.7 kB view details)

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

backports_zstd-1.7.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (644.1 kB view details)

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

backports_zstd-1.7.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (583.2 kB view details)

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

backports_zstd-1.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (477.7 kB view details)

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

backports_zstd-1.7.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (507.7 kB view details)

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

backports_zstd-1.7.0-cp313-cp313-macosx_11_0_arm64.whl (367.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

backports_zstd-1.7.0-cp313-cp313-macosx_10_13_x86_64.whl (438.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

backports_zstd-1.7.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (447.2 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

backports_zstd-1.7.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (366.7 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

backports_zstd-1.7.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (358.0 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

backports_zstd-1.7.0-cp313-cp313-android_24_x86_64.whl (454.9 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

backports_zstd-1.7.0-cp313-cp313-android_24_arm64_v8a.whl (400.9 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

backports_zstd-1.7.0-cp312-cp312-win_arm64.whl (292.5 kB view details)

Uploaded CPython 3.12Windows ARM64

backports_zstd-1.7.0-cp312-cp312-win_amd64.whl (329.9 kB view details)

Uploaded CPython 3.12Windows x86-64

backports_zstd-1.7.0-cp312-cp312-win32.whl (292.4 kB view details)

Uploaded CPython 3.12Windows x86

backports_zstd-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (500.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

backports_zstd-1.7.0-cp312-cp312-musllinux_1_2_s390x.whl (632.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

backports_zstd-1.7.0-cp312-cp312-musllinux_1_2_riscv64.whl (568.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

backports_zstd-1.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl (588.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

backports_zstd-1.7.0-cp312-cp312-musllinux_1_2_i686.whl (512.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

backports_zstd-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (484.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

backports_zstd-1.7.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (571.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

backports_zstd-1.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (496.2 kB view details)

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

backports_zstd-1.7.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (642.5 kB view details)

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

backports_zstd-1.7.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (583.6 kB view details)

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

backports_zstd-1.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (478.2 kB view details)

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

backports_zstd-1.7.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (508.5 kB view details)

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

backports_zstd-1.7.0-cp312-cp312-macosx_11_0_arm64.whl (367.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

backports_zstd-1.7.0-cp312-cp312-macosx_10_13_x86_64.whl (439.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

backports_zstd-1.7.0-cp311-cp311-win_arm64.whl (292.3 kB view details)

Uploaded CPython 3.11Windows ARM64

backports_zstd-1.7.0-cp311-cp311-win_amd64.whl (329.7 kB view details)

Uploaded CPython 3.11Windows x86-64

backports_zstd-1.7.0-cp311-cp311-win32.whl (292.2 kB view details)

Uploaded CPython 3.11Windows x86

backports_zstd-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (497.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

backports_zstd-1.7.0-cp311-cp311-musllinux_1_2_s390x.whl (633.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

backports_zstd-1.7.0-cp311-cp311-musllinux_1_2_riscv64.whl (564.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

backports_zstd-1.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl (587.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

backports_zstd-1.7.0-cp311-cp311-musllinux_1_2_i686.whl (511.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

backports_zstd-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (483.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

backports_zstd-1.7.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (567.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

backports_zstd-1.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (493.1 kB view details)

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

backports_zstd-1.7.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (642.9 kB view details)

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

backports_zstd-1.7.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (583.2 kB view details)

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

backports_zstd-1.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (477.9 kB view details)

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

backports_zstd-1.7.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (507.9 kB view details)

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

backports_zstd-1.7.0-cp311-cp311-macosx_11_0_arm64.whl (367.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

backports_zstd-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl (438.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

backports_zstd-1.7.0-cp310-cp310-win_arm64.whl (292.2 kB view details)

Uploaded CPython 3.10Windows ARM64

backports_zstd-1.7.0-cp310-cp310-win_amd64.whl (329.7 kB view details)

Uploaded CPython 3.10Windows x86-64

backports_zstd-1.7.0-cp310-cp310-win32.whl (292.1 kB view details)

Uploaded CPython 3.10Windows x86

backports_zstd-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (497.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

backports_zstd-1.7.0-cp310-cp310-musllinux_1_2_s390x.whl (633.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

backports_zstd-1.7.0-cp310-cp310-musllinux_1_2_riscv64.whl (564.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

backports_zstd-1.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl (587.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

backports_zstd-1.7.0-cp310-cp310-musllinux_1_2_i686.whl (511.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

backports_zstd-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (483.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

backports_zstd-1.7.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (567.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ riscv64manylinux: glibc 2.39+ riscv64

backports_zstd-1.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (493.2 kB view details)

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

backports_zstd-1.7.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (642.9 kB view details)

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

backports_zstd-1.7.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (583.2 kB view details)

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

backports_zstd-1.7.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (477.9 kB view details)

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

backports_zstd-1.7.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (507.9 kB view details)

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

backports_zstd-1.7.0-cp310-cp310-macosx_11_0_arm64.whl (367.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

backports_zstd-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl (438.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: backports_zstd-1.7.0.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for backports_zstd-1.7.0.tar.gz
Algorithm Hash digest
SHA256 1a967189c1822b6e85a2e550fdfc88a3272c17633ea0a4732dac5911a8034f2b
MD5 70292d45de71a2662b5dfca2fb244b01
BLAKE2b-256 75f09ba1b05811aa5f5434f69768253129460a5744e1814f359efba39a01ce20

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a64e796c7eee69dfe45827b2e003b7731785ec890c73ea5f5fbc30a1c362fcad
MD5 97ad8b879358c30778a085f02ea70051
BLAKE2b-256 f9fef30ad42bd082b9c6d419c23311a8904a55e248e07c61bf6b91e1691188aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-pp311-pypy311_pp73-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-1.7.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25caf23dc36de3b839d16c25893751323cf51a8c986f2d01478c16b25133e2e8
MD5 57aac8d8591a4fdba395fdd35b9faddb
BLAKE2b-256 78bffd7d55452431d836b3ae81170689f19ddab210fa6c385a72e22006320afe

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-pp311-pypy311_pp73-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-1.7.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e3f760ee9d16378e3cde9d862e1c9ced577a86736763fb486b9f731d5116807
MD5 a33475f775a50bf533bb0c897a3973f8
BLAKE2b-256 ace2e5151b85ca9ddfce58388f0fb0316adaacda25d494d2a668842e09f02063

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-pp311-pypy311_pp73-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-1.7.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a2e30ea49c673533d40eb73d0f7abc0ebe9d2e4fc6dbada5ad60b42ff98ffa86
MD5 73ca37530d9cdd3da4c73317fea45e18
BLAKE2b-256 02f8f078a32c80ef7546ec2d1206a38bedf4d150cbaac653f8f32d7329f987ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-pp311-pypy311_pp73-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-1.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c13f73d0389cdc88b02c05e8175d8ad3030e9e70ee079748763166aa843b647d
MD5 82da1f40b0b904371869c8693f2220e6
BLAKE2b-256 3700486044556d715a7b1a41e9cd69544bf8cb3988b383453657c021d24c5c27

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-pp311-pypy311_pp73-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-1.7.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 de58be0a3109cfb83b4e61e2b6eb770201cc132ee5a7c677cd8e0140ad2be80c
MD5 20e54b48e55e12a95d7f1b009ec455a1
BLAKE2b-256 7aea42fe3258e02a65603d1eab26200712e37bef6ea408e7f9dbfd6858bc036a

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-pp311-pypy311_pp73-macosx_10_15_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-1.7.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2feaefcca77c6ac97a46a64f9d41c429caa135a837c54b46398022716abd8184
MD5 dc1a71b9af8f595fb617380f8a0626a0
BLAKE2b-256 53fd1adf8f2d231b29f56c0a001b2a6d625ec9a64a6fc63d4589f7683f84a1bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-pp310-pypy310_pp73-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-1.7.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76e205599a60acc0824bf03522fb9ad25449492535e1efba18f047e2ce48e745
MD5 95c48b0d8f43f66e325192e2bd9e3f06
BLAKE2b-256 06fca4bcb4e917f2b79adad76f82bbe8156d7ad0d15d2794d02236dc9da96b43

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-pp310-pypy310_pp73-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-1.7.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e27916c92272ab4285d8d2e02eebe5f4198da10d82250b6edfa3ce372aff6f79
MD5 dd5ee6198b336911c9f6e8ff43383d41
BLAKE2b-256 971d6e6a8d946fbeef93c225943f34292bafbc6b033278360825d4db80141655

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-pp310-pypy310_pp73-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-1.7.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f8da4758af21788a9a90f56b7f658a35d33034e55d416fd40e8bcfbb347b90c2
MD5 7aa89bc137d44b6883e5d139c690bd48
BLAKE2b-256 50ed62ca90940133e1f45eeb0d4782775f15ac24c50a1f201fe498855f1ccdb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-pp310-pypy310_pp73-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-1.7.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3c3cda113aacabe7fd0594ad2832b7023a5fee84009406fe4d230906d80fb25
MD5 b3fbad1fafcfa40a1735a5d55e42e0b2
BLAKE2b-256 7fd4b617451d1455db3ac0ffee70e417551f2d899359c75d4e539d4afb49d0b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-pp310-pypy310_pp73-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-1.7.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8d59b145d379745c4461adbe9a9afc647f90ca164f50ea2566c08d6601531d1c
MD5 c372e4d6583784789cfad2115a1f4933
BLAKE2b-256 6421efd7e8b677a8942c5b4d9c740a9d2bb8bf3099c7e50ec5570916393a1ab1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-pp310-pypy310_pp73-macosx_10_15_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-1.7.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7eaceeec75e1dbdce40b81fb0ed1ffdb7ce492d970db7f8aabd6a95ccd6c3dd3
MD5 bbada06b097f295d2066793dcb8f3652
BLAKE2b-256 37f9109ac272d650483fbdfa611c0040253a405f640604fbc90acc8076c6d37f

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8086b4a7443bb2863f7ef8edb317b715d5f3ccec6c5512619bd23d57661ba1b7
MD5 36faf0e3a73da9c083d202efe4e1ddf7
BLAKE2b-256 137dfb0da7351e8b152d5149127594972922829281c316618df37a7e724f2eb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 31ae30d216ffae9243dfa607bcb995f94a70de5765bb8fae1e35ea1ad6497959
MD5 fee0ebcebc812c70cb9a227cedb24390
BLAKE2b-256 f5a5bdc98d039ddbd5815fc1dd71912bbfb9f820a46ec12004ead51c8d60ea50

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5992143b2a8b71b4d17afed20cce2df50f8718228e31d6e716493b1fe9201712
MD5 4f84cabc340491de11e0b8f2d8837bc9
BLAKE2b-256 a32805b11f7084d1100491cf7c60962aafd900c3dd01b1fc1ce85914476cdae0

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f37e12ef10747f76901b1f20ef70d33221e861de177dba5ba08552242c6fd4bd
MD5 204484ed543967d2bb5abf93883789f7
BLAKE2b-256 bd13004735cc4536483cbd973a60346a9dbc7bb977b13c28b55a11da14bb0a1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b40bc8cd0a86cbbe8263a9c3a2bf2e34897483516c6d799725412a19524c32e3
MD5 5cf84acfcd9a4c66dd9651a9c0667cd2
BLAKE2b-256 81d2b5ec9709660fb1c193508215d9c30e781fac406183faac7c3c36b1c583a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-cp313-cp313-musllinux_1_2_riscv64.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-1.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b3975330159f1efdd1fba76afe1c7b84f66f26e2bf209b32630fb148d647e0d5
MD5 bb4ebc7a2c83d4670c78729bc06fceca
BLAKE2b-256 31ead4e2eb159cd5813debd5a34d0644caff5fe7cf2e569bf5b02a82934aeee7

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 37ef23c6c522fe935726c8fba6344350973c4a23b06d10194d90d0868b09ff7a
MD5 fcc2494b352db599a40f9666d1212f74
BLAKE2b-256 c0d8f53a79e6bf3cdb7ae08f95220c80bd0d606f3d6c3482995deaf21d024fb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 565270b0d6497970fa97a0df59593ae0d225e4176678bbce851d39e5f8aa422b
MD5 05881c296427821b0f0c19a598ddf695
BLAKE2b-256 02872296db4c3c578947c35ccd8dcdf7992316d7e1f5f43cc829c062b3ed9319

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e590313ce156f1d8986dff3107e8ed1651d6d106a56b3a95f965ff8d845ba979
MD5 3f6394b945f8dae675140e9b0418bdcd
BLAKE2b-256 968ba0603458ca08e4a56f09ae58588ce3c0453425e753df704d9aeaabb66ae5

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.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-1.7.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-1.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3f4887a8a1fd1290017fe5a1d29a7d1dc5c57f9477fbd64f119316a7e3ae769
MD5 136e0e0b4ddfd16c01750c25602f643b
BLAKE2b-256 1135be5485e65df95b86c4981ad4a577b505cfeec6b700a46a86e2e3175ac718

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 32a94cdcf16b44395cd55086ea38877395ca6bf3362cb507b0eb86db2a45a6a4
MD5 b87b87523c54fe44c10c38520d1e2f38
BLAKE2b-256 aac75a8c58542469ab31680c403b844770c119a976fd4cf1000fd7d53e7d0f77

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 15e97edfd173ade365c01bac7d9d297fa906686015cdbcb5f32a0d410887826b
MD5 f19d8c53a7e307e29d0c6b18afa88693
BLAKE2b-256 e15311687e5019d56ea47893cf2ba59a6b4884a4e2d1496d0e653aed373b973f

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69367726f4075c2574746f5883b0dc045805c5b02a81fdf8c829c26d33969de3
MD5 1e530023f4fc908efbd8a1f44b3acea9
BLAKE2b-256 7c4d6dd730b79ab96532e23fe851003545b4cc79e50c5b4c79ffcbe1b724eec4

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7e3999b5141d7f85171822d06112f70f7f317d162f0120530dd2c7a28dbf8add
MD5 513f0f308390970df5da5278aaca1e61
BLAKE2b-256 179b7289dc191b34279d8f176bf5b181c3b26f8e049d14a2c0a2637650f034e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eda97fa535d4651a4ccdeed4ee7dde3978369046abc8a7456a7117d4271f9333
MD5 df17edb60e0c0c54c9520bfc07299dc4
BLAKE2b-256 cdf872930ae4bb7bf6b9d6c7c31bce7b3e5751c062269a4ee718066e25f1973b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dcdbd368659f46b570114eeea36b75347716523870d71f6bc5d7801862aefd6e
MD5 e6a5fb0019f4b3d07da2134065d80104
BLAKE2b-256 cb9f8db55c7f77aec60879844a879ac026065d8f03aab74080701acc060c4168

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 44b687b1c0be5cb279693d2682f91ff84c559d679b2ef2fbe501fe4b2db2c4bb
MD5 2d705d5cab272a173ac69538afdff799
BLAKE2b-256 4ab9c4d24d113d28b774662152c462d38d28109741d6d45c1aea7834371741dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.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-1.7.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 34154d82fc0246738159084d146401073f9ac9cfd755b66bb8853ca06037810c
MD5 3fe80e393849d01f5a5f68a05a33c0cd
BLAKE2b-256 b36564025302bae4ba924d613e404c6120bf194b5636786960ece274622a4a3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.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-1.7.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 ecc95fa0e91d92951d74468e7789afdf91d9e702f40af2d0fcbf0ded4d0f650a
MD5 0ee16793c77653ffe4bb36b30056ad99
BLAKE2b-256 76e88209081e094aa98b2f28bac388619c85b1a44aed813d6b3c54d1da79d19a

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-cp313-cp313-ios_13_0_arm64_iphoneos.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-1.7.0-cp313-cp313-android_24_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 efee02f18e04c2e9e6d694c5cf9b7457c4bda3ea96f48b1ee69769e06bb9d89f
MD5 df3da0df2b25ac5c709ec0732d3c3abf
BLAKE2b-256 aff339ef7dd75eb1e699e25a19212737a73d3c030a0c9fd1d0ed1572b5f8e493

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-cp313-cp313-android_24_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-1.7.0-cp313-cp313-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 a3fbcbf819bee2b06b8666b13742098d0f40663ee34e64a12bc360ec0f5e3d89
MD5 78bc6090d6beb4fa5d563f84f9fb53e6
BLAKE2b-256 6f2432b3358ae3a4df0ebad85ebbce721818c6d76a836119bee76089d103e951

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-cp313-cp313-android_24_arm64_v8a.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-1.7.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cefb983345c55ccaa20423a4eb96434730e6d640ffa2db9b60e5bedb0fbef94e
MD5 437d2292e6d31fa1de7bf5af525878aa
BLAKE2b-256 6428b4a17c07d5a50a45cb04592960d1593cdf3b3728968371f332aa3643b804

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2ea62ba2f1a6e6c9e6dc108921f9ae881969ca72e073162fa488d0de3eb2713f
MD5 51389c065e1e4aab5c57a40653aa83c5
BLAKE2b-256 71896cea747bdeef34cd12482b17e604b832fdb0962987132b99496f1a6c3f82

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for backports_zstd-1.7.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f026fe2e89b7ff01ba6ebec6abaff34c6063919151a32afb68714cf139e17c50
MD5 601fd7eb1551ff107322be0f5c830204
BLAKE2b-256 1c57fc72280334d2aa94238c5882052263bd7796c1fa924044353c30d058e0c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 468b636ed365627b364c94be1c35a52858e13b5bc1fa3f068bbc71b1af65f3d7
MD5 5ea2e8831f019b4f7ae14dfdcbe3b56f
BLAKE2b-256 6ad0e36c18c87a74421954502d123ff7027e0a63a7624dffa99ec0f7474deff9

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 138154eea8ced84394991bf0e819dba6b690306a178dd528c28eee724b7d4aec
MD5 dbd8410b308a4800c4afc6f7f6523d53
BLAKE2b-256 438cf970f15e7fdbf8a251f121c91364fa68bbc2dfab4d5eca058427dec63397

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 12a9842a2ec2854cbec7f252ab29d44c2b772788a9bbafded743ca4bf73b115f
MD5 4089f78e8ec509c32472d877bd247af5
BLAKE2b-256 ae5adf8b5b848e8dfdec6edca55f22067ffbafa081d81aec1313e28155c3fea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-cp312-cp312-musllinux_1_2_riscv64.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-1.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d7a7cb964eb8d1bb5d039970b16fe54802ea47dc935ae96d9874844a126bf8ff
MD5 d9452fa19cf8c411d634535615cb03f8
BLAKE2b-256 56d2d4ed32c353148acc18f3b665ab24a677b9c49d3640244424c5d6046400c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a3e1c6ce0b232ee6703ed24ee126e8186107f5a4e56edbd21cd1aa5a8c6bfd12
MD5 b286757c6d4203eec5eda9c324ca24f3
BLAKE2b-256 f55083fa7bdd5e1d808203b9143848fdf7e15de399b8119a0d4378b2aea9be78

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 132ba81fad59d44958b7d10da31545e7128c469cfbc2e268d0eaab96daa64175
MD5 7dc1006a7202af75a996be66859ff679
BLAKE2b-256 7aa4372c3dd3017c3f93cda0acbc282f8073b70efdc1b56d1fdeebe023660725

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 02f2f6649a342d0901ddb35596ddadb7c3bb1cf6bb54d691e5e0285f1fa0674f
MD5 a9e56163723bef024e3a7e74f31a8cab
BLAKE2b-256 dec7c6379a0d734bea1c7f14d07c23258108cc92b994654e25cfe3a3e88cd785

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.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-1.7.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-1.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 470895d0bcddc850766e593d1b26764fb138c2feed149f515a2627ef9587d54c
MD5 b7e01489941b163bb8dba10c0c08b4b7
BLAKE2b-256 1e40121917bd2671bc3f1507c25503c0554f0b52483edcca4e6210e6d22228df

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 676a37971f676830d4f90cee8fdf4e438781596fb2f2d1984ac76c9b3eb39a69
MD5 ddf210c43c86201446f4794e2c9d1c9d
BLAKE2b-256 95a4fbb7c73336f3279dad36da94382a59755100b656301ea836ebaa42736581

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cf609af3735c7e697ccd13f6b0c88da57c201b6ea63c6afbfe81d6f9b50e298c
MD5 b94fe4ad032a5d8d5e6a85dc166d8080
BLAKE2b-256 f97677fa9b385e79d4c106ce15d66681978f39a844b0eb5db02682687246b716

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1c55e55e1e9dee312bc5e186386e6aa5207482a6d2242bd7c14709ded254f87f
MD5 129722f79716a332433ae13a6c64c8a3
BLAKE2b-256 404b820acbc2c1d1d945aedca0c0d22546a948630ffb186df523098fbd669a95

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8344260bed9842c415a93d9bfe23ea834e5f27758827d56933d8c0d06db507a2
MD5 8ba1718e6d6f48b3736ffdcc9b1696f1
BLAKE2b-256 b2cb557db98001c4a7202beed19e8bd42603a2315b80fd5def7e21a0b048ec3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bab192b934fdf5a03df4752556d9c8af2d058163fdfbafd4a253cdfe25449a6f
MD5 a6a138d9d98836b5f60b84ef73b11d59
BLAKE2b-256 6d245556959c7d03bfee5ff14d7f07dd9bf8de737c69f81d823a32784ab39c34

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b5548a857bb0fcc5449cc3687353547396c6b1ecd4bd882f1cd34fa8d29e70ca
MD5 727ead576a63accada8ab045393a0090
BLAKE2b-256 df23240495dec973dcfb34816248956ca8d05b32fb75936c226c1cf497b83b83

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8827a5601c749a986faa163f3b59d59eedc5947812be114f7132c3d4ad153fee
MD5 4e7ed7a21e177f32387d1dd494baf6f5
BLAKE2b-256 c2ebe446bb3d4520e618571a929ceb7776124d6f8491ea17d3355a8867deb031

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ae840be71108f6020567dd389c973e70a4374a6c0b03c02d3242c8a98a9b3cdb
MD5 e95cfc3c2f22a2998ae1a5767bbf7951
BLAKE2b-256 99048f67d5436f7ef4b1d286b8b186fb4a3e371416921110f8dc0f6c4d9e497d

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for backports_zstd-1.7.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1713271e2faea852a1682a6143c19c3506cd2e1b71f60a8924c59a9d2554d2b2
MD5 649a1989599d610fd2cec09706dabebb
BLAKE2b-256 db3013f0447faef940a763dfddf6ba2d4941bb45a350bba8c9ba56a22e933dfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a80bc6a8c9aeaad76cc3ecd58067ec038a764807186b0df970c760df39b89c7
MD5 840bd2c5615302be808dea165a126242
BLAKE2b-256 f044b5f1480f6c250ed72f22e8682d6532f992aef0e2033b21b8d8bff96be034

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 633ceee3ba86f696fc4e992f7bce558c132c26d04d64d0bb8c2f5d487d5b3aee
MD5 e0bda779fa40d4aa027cb7de984e24bd
BLAKE2b-256 34efcb031d27b06863aa666d49dada3c1010151306b98861b8b826ae722af1a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 86785aef2b4663a97c932d829ddc9565354cc628e2ae61764d9d93c8b186d65f
MD5 6dbf57a59953cba53099d718b8caef53
BLAKE2b-256 612ff378daf513ca0feb5740aa4b1291c5133e5095830a7052da6088974f477b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-cp311-cp311-musllinux_1_2_riscv64.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-1.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c2c01cb823ed1b2422905a9791759bdc986e44e7a12b4661e9d712d5c8946016
MD5 407fd5e7e3fdf2b0970376fb33cac0df
BLAKE2b-256 be8501cfbb2f07475ac1091ea93fbd04762c95ee6d82c937e2508072e12a9eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96a6f8d3f4cefb6b11ebfc30fc0d970430ecfb169a6555990734a2a46977ec4b
MD5 c196a80cfc9684dfd5f9a9251927aff6
BLAKE2b-256 a9c40882cfac8714345cfcc5ba139e16c7b64aee9f2fec3ebff9de77131f1d14

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d85c18170e8cdba339edc67a5021cf79ccc858f5fda6aeae71f9015c5e463f6
MD5 7b21c5d071ed985df0a794ca7d4ea430
BLAKE2b-256 bcf2e7af20299deb43f52aaf24f74e60b994201aea6d22c8a2adaaa13dc4b109

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5d1bdc293267200e31baf35aa142c6d0ac3e8cce650f79c84e6a32980dfbfd5c
MD5 01fe3cfad451dbfc877dc383626a7c49
BLAKE2b-256 006b454369a552a3d114b293706441dc43412639a30665b9551959f0773e9b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.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-1.7.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-1.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b2e505d8923e1e9224cf249b99c92cf728e9eb91fbd1e07a9c2816013621fad3
MD5 fa44ca7797d9781c563456323ddf0ddd
BLAKE2b-256 96f2661bd15e062ceb1a20a78e40598fee599a31472e60a7961dcd75b467c94f

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5d8493f71d9c5c05d18554afc6bb9a319a6674478e8f3042c7e22900c3a06f4d
MD5 ab3840ec8d7469d07b505e93ac598018
BLAKE2b-256 e3d35944fbdfc8c03b8ef72c73c36652a32bb251b1b8ccefab07a8a8fbf202cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6c8c183027eae38f5b0643d153f7f91e569d22ee8db25639aea0745677a38ed8
MD5 83daa1e309e0fc561ee2481838c38515
BLAKE2b-256 3f68fe0e57f2c8e04560eecc106bba18ad62d0576001722e8c5b619bb4517991

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c358e72e5ff8f23e9f3ec778be4d67ddc5ced3e6d8f03521db29d7357a773fc3
MD5 53e6c49d1a17e79fd9f9ff88f3bda082
BLAKE2b-256 89e67eb513bb06fb2733e71cf358f227969996b74883de86458935c09f08d1c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 47f14a24428a2bc070e26c402f8d6d25676345c32fa116b16b60167a2925df2a
MD5 12957a99b25019a9c6b062360710ae6f
BLAKE2b-256 5c8f9b09bc4d29c2b697e9557a54e1e52b264a1ca3babd36542e7be6a0609cf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 700ebb797956767679dbca38e45eaa5c21630e460e31ef53bb4b849125bb5d87
MD5 95e08f55f9c4a88ea07ce68c7af1bcb8
BLAKE2b-256 080d97e70a1d47d660c3854dfbbbd8a8ea9a98a0993976d9b0e0da07525dcff1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 165a8898c5514b69533edf4ab1f4f4b4bacc62a137a76f36889b473150ec28a5
MD5 4dc9e0cebc2c17f6c50aaf2b95b16428
BLAKE2b-256 0414416e2e75d434bf2b8433ba54f10e5ec01a63bb1dfc7c6a82151faa735b50

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 db2fb308ca3669e2913e66aae9173d9a9d5c448caaa2f1bdd12efbfe480f0fde
MD5 36b360827d397e1545d3ef16d1ee4767
BLAKE2b-256 e0c32a5eefbc4466c0eb9442ab62fe5956889b823853ad088e96ac791ff943ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 02c4458f25f884131c59d54549a3bdfd649ca3384f1dd15204762171d9e24739
MD5 2f0cff983b4387719c30ef1f1a5b523f
BLAKE2b-256 284ddd6414c1408c5fe76204d545fecc433ec023501ee71507c0ac228707ac36

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for backports_zstd-1.7.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e9e7bf426a21772b3ac1fe5c967678063d7bfcb58d2f559b98bf4c9c6c52f95f
MD5 84ddb23b04068d050fe5ed6e71f4fd63
BLAKE2b-256 96abc3c9e61071cf4ce2945ab2a83c980ff4dc918b179e81c5255590310fee6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff08fbdf4090c8075bcc0f3ffccf3098e4fd6a0d9a4c5c2078398ea5bb2ddd1f
MD5 f639cec84dfd45d7fd42b07bac17f54b
BLAKE2b-256 969d0db357287b73ee2ba972e54d5de583793f7bfd76d4230c918a6fa297b477

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a43e03d7769a06b5ccf4cad5fcf4b3e690b1b36476632d3e1bc923e12579963f
MD5 a9a0d8eb757979a24d8936f03aedaf72
BLAKE2b-256 94fb137f60f71f6275560dbbfb962e81992e8e585cfba99c15da5a1971790f6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d312ff5018199e1f889ca470a98361feaf2d194f82091cbbd366bb539e7c3583
MD5 1878288cb671d4f47fa26e1fd82ea2bc
BLAKE2b-256 c1f76ddf25c04fcf0ef980dd3acc22299e381a0107280bd8630ed6b81d8532aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-cp310-cp310-musllinux_1_2_riscv64.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-1.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3c32951fe1ae22f6f059d3c02cfdc21155cee83be456c424d955bf493ba2a9dc
MD5 c026eb65d91cf5be8d3c526f3bab63da
BLAKE2b-256 0674de754b415121a65bd2622b7a4cf6ed82c29ef0c8c3b562f3d30ed790a1d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e833fb85673c0a8c880dc3f759c87726680f953492e9275f666fcbfd127c6e8e
MD5 33215de3186d73b2c3b1425ddf313451
BLAKE2b-256 b840aebec21e0527ab149bdfb39980951bad26272f5ffc8a5e3fa197465b3eca

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a868cff3de171b4961acd9fcf9e843cc966783aa0b2bdfdba876ec20023e24f
MD5 9566eeb6cb7ea6ef30265fd934905840
BLAKE2b-256 13871c1fb060fabeca988c6f020d097750be7586ad8572358914b994b6abfe18

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e4108fa7b126fb4b08853670bb32c4a812aab355b8264aa1a27b7bb724ae6ce0
MD5 9f276a66f313a98e357fc5523f694159
BLAKE2b-256 3771eb4a44a4c8cc835d3ea1d2bcc50c704c059e22f8afc29cd30fad3051df52

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.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-1.7.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-1.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0b7929cbaff68c124d2366d803dc654347f37637a3df73a2a0a8f2dbee4819cc
MD5 0c65a7711d31861f5b2b705d5df27b8b
BLAKE2b-256 c083ddf5e358efa80d951278e73892c22d57a710e0b0be7f98257579babe8c61

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3e0f53a23a40d25236aab6e0e817f2cbbf27e6f8fe976fedaa6b9ee53fc809b9
MD5 c0cf384ccb91022030a210d28afb6868
BLAKE2b-256 1adffa177293c9e81239f4f691e31eacc8573521e541532c1907c311701eafdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a0469fbe83c85f5a1fb83657242477ed612d4d4d3c000b67f8a67bc839115b09
MD5 4673fbe68e446a6750a16b0ec04f8210
BLAKE2b-256 9277faa166b8079091f0b5cc4e44fdf5a2fa02be941c3a70c45906f2578e2700

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 09f1ecac082932870df519818e88eb938a03573245f629e34979141583112123
MD5 f0968023196d04b668efab054d051720
BLAKE2b-256 ab63a8629f1b58f8805ff412f9dc780f01412ffd98e422d0c38d8d2a400e0b76

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 beb8d6cf5ab3c27cca3a5fdcfeeb228885083d606f0709ffc0a698aabc4f13ee
MD5 39ea7c6928ac47b3406ea393771b53e4
BLAKE2b-256 2087430e3aecc290031c374c05e1f096be4988805a68192ce0294ce6394772cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68ee21f0efa3f06d3d3cbb5f291c177497fc550ebef732b0a38599de8db1ee32
MD5 8f065b88ddf42f5e9674366e4c30879d
BLAKE2b-256 c531d6eeaab06dc7b58cc6d44873c7a4995e42239e081ae968c91378cda3434f

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.7.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c4f557bd8579d38316344c205b2a540e84b1014fb3721205eb6c3eb5322e9d9
MD5 10e4a3d1f48ec1202a745a33981c8339
BLAKE2b-256 bd16d38a2d79e9d5c4ed3654787ac97a57ba20f2c24b750c2cb2be6f43b009a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.7.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.

Supported by

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