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

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-1.6.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.6.0-pp311-pypy311_pp73-win_amd64.whl (315.7 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-1.6.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (415.2 kB view details)

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

backports_zstd-1.6.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (395.2 kB view details)

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

backports_zstd-1.6.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (421.7 kB view details)

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

backports_zstd-1.6.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (340.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-1.6.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (411.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-1.6.0-pp310-pypy310_pp73-win_amd64.whl (315.7 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-1.6.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (415.2 kB view details)

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

backports_zstd-1.6.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (395.2 kB view details)

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

backports_zstd-1.6.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (421.7 kB view details)

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

backports_zstd-1.6.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (340.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-1.6.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (411.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-1.6.0-cp313-cp313-win_arm64.whl (291.6 kB view details)

Uploaded CPython 3.13Windows ARM64

backports_zstd-1.6.0-cp313-cp313-win_amd64.whl (329.0 kB view details)

Uploaded CPython 3.13Windows x86-64

backports_zstd-1.6.0-cp313-cp313-win32.whl (291.5 kB view details)

Uploaded CPython 3.13Windows x86

backports_zstd-1.6.0-cp313-cp313-musllinux_1_2_x86_64.whl (496.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

backports_zstd-1.6.0-cp313-cp313-musllinux_1_2_s390x.whl (634.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

backports_zstd-1.6.0-cp313-cp313-musllinux_1_2_riscv64.whl (565.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

backports_zstd-1.6.0-cp313-cp313-musllinux_1_2_ppc64le.whl (587.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

backports_zstd-1.6.0-cp313-cp313-musllinux_1_2_i686.whl (510.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

backports_zstd-1.6.0-cp313-cp313-musllinux_1_2_aarch64.whl (483.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

backports_zstd-1.6.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (567.4 kB view details)

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

backports_zstd-1.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (492.2 kB view details)

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

backports_zstd-1.6.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (643.5 kB view details)

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

backports_zstd-1.6.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (582.7 kB view details)

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

backports_zstd-1.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (477.2 kB view details)

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

backports_zstd-1.6.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (507.1 kB view details)

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

backports_zstd-1.6.0-cp313-cp313-macosx_11_0_arm64.whl (363.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

backports_zstd-1.6.0-cp313-cp313-macosx_10_13_x86_64.whl (436.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

backports_zstd-1.6.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (446.7 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

backports_zstd-1.6.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (366.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

backports_zstd-1.6.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (357.5 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

backports_zstd-1.6.0-cp313-cp313-android_24_x86_64.whl (454.3 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

backports_zstd-1.6.0-cp313-cp313-android_24_arm64_v8a.whl (400.3 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

backports_zstd-1.6.0-cp312-cp312-win_arm64.whl (291.9 kB view details)

Uploaded CPython 3.12Windows ARM64

backports_zstd-1.6.0-cp312-cp312-win_amd64.whl (329.2 kB view details)

Uploaded CPython 3.12Windows x86-64

backports_zstd-1.6.0-cp312-cp312-win32.whl (291.8 kB view details)

Uploaded CPython 3.12Windows x86

backports_zstd-1.6.0-cp312-cp312-musllinux_1_2_x86_64.whl (500.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

backports_zstd-1.6.0-cp312-cp312-musllinux_1_2_s390x.whl (632.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

backports_zstd-1.6.0-cp312-cp312-musllinux_1_2_riscv64.whl (567.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

backports_zstd-1.6.0-cp312-cp312-musllinux_1_2_ppc64le.whl (587.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

backports_zstd-1.6.0-cp312-cp312-musllinux_1_2_i686.whl (511.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

backports_zstd-1.6.0-cp312-cp312-musllinux_1_2_aarch64.whl (483.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

backports_zstd-1.6.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (570.0 kB view details)

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

backports_zstd-1.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (495.6 kB view details)

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

backports_zstd-1.6.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (641.7 kB view details)

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

backports_zstd-1.6.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (583.0 kB view details)

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

backports_zstd-1.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (477.6 kB view details)

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

backports_zstd-1.6.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (507.8 kB view details)

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

backports_zstd-1.6.0-cp312-cp312-macosx_11_0_arm64.whl (363.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

backports_zstd-1.6.0-cp312-cp312-macosx_10_13_x86_64.whl (437.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

backports_zstd-1.6.0-cp311-cp311-win_arm64.whl (291.7 kB view details)

Uploaded CPython 3.11Windows ARM64

backports_zstd-1.6.0-cp311-cp311-win_amd64.whl (329.1 kB view details)

Uploaded CPython 3.11Windows x86-64

backports_zstd-1.6.0-cp311-cp311-win32.whl (291.6 kB view details)

Uploaded CPython 3.11Windows x86

backports_zstd-1.6.0-cp311-cp311-musllinux_1_2_x86_64.whl (496.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

backports_zstd-1.6.0-cp311-cp311-musllinux_1_2_s390x.whl (632.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

backports_zstd-1.6.0-cp311-cp311-musllinux_1_2_riscv64.whl (564.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

backports_zstd-1.6.0-cp311-cp311-musllinux_1_2_ppc64le.whl (586.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

backports_zstd-1.6.0-cp311-cp311-musllinux_1_2_i686.whl (510.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

backports_zstd-1.6.0-cp311-cp311-musllinux_1_2_aarch64.whl (482.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

backports_zstd-1.6.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (566.4 kB view details)

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

backports_zstd-1.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (492.5 kB view details)

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

backports_zstd-1.6.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (642.3 kB view details)

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

backports_zstd-1.6.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (582.6 kB view details)

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

backports_zstd-1.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (477.0 kB view details)

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

backports_zstd-1.6.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (507.4 kB view details)

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

backports_zstd-1.6.0-cp311-cp311-macosx_11_0_arm64.whl (363.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

backports_zstd-1.6.0-cp311-cp311-macosx_10_9_x86_64.whl (437.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

backports_zstd-1.6.0-cp310-cp310-win_arm64.whl (291.6 kB view details)

Uploaded CPython 3.10Windows ARM64

backports_zstd-1.6.0-cp310-cp310-win_amd64.whl (329.0 kB view details)

Uploaded CPython 3.10Windows x86-64

backports_zstd-1.6.0-cp310-cp310-win32.whl (291.5 kB view details)

Uploaded CPython 3.10Windows x86

backports_zstd-1.6.0-cp310-cp310-musllinux_1_2_x86_64.whl (496.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

backports_zstd-1.6.0-cp310-cp310-musllinux_1_2_s390x.whl (632.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

backports_zstd-1.6.0-cp310-cp310-musllinux_1_2_riscv64.whl (564.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

backports_zstd-1.6.0-cp310-cp310-musllinux_1_2_ppc64le.whl (586.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

backports_zstd-1.6.0-cp310-cp310-musllinux_1_2_i686.whl (510.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

backports_zstd-1.6.0-cp310-cp310-musllinux_1_2_aarch64.whl (482.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

backports_zstd-1.6.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (566.4 kB view details)

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

backports_zstd-1.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (492.5 kB view details)

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

backports_zstd-1.6.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (642.3 kB view details)

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

backports_zstd-1.6.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (582.6 kB view details)

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

backports_zstd-1.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (477.0 kB view details)

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

backports_zstd-1.6.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (507.4 kB view details)

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

backports_zstd-1.6.0-cp310-cp310-macosx_11_0_arm64.whl (363.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

backports_zstd-1.6.0-cp310-cp310-macosx_10_9_x86_64.whl (437.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: backports_zstd-1.6.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.6.0.tar.gz
Algorithm Hash digest
SHA256 80a7859ffe70bf239d7a2ce15293bdeb5b4280ff7dc326ffab312b0e254dbb24
MD5 c8a982fa465f105477dcbc9ee810b4d1
BLAKE2b-256 8eb55a873da082bd08acd6a497f7aae224e94a7c27fa8f24488089cc50a16c84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 994167ff6551b9c1ce226e0aab16295b98c94507b5701aa60d2c32b7d50796b1
MD5 876716491aef12b18c287a45425af388
BLAKE2b-256 3c5670860ece85cd49b564305cbc22bf6c4183975427ff6dfe2097e855f5dd5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.6.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.6.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.6.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 17efb3d11137de5166dd51eedab9c36ad633402acba386eee8d715213ea47e49
MD5 37ea172638412c66b8acfa3aec541fce
BLAKE2b-256 53a1484e0f9ec994bd2285d6747e7c8028350f1a177e9210bc57637898042d3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab70eace272d6f122b121c057e436709b50a28abf30d97aab28433c08f4a4095
MD5 6be7a72ee09a7f358c2d9aa3cae6300d
BLAKE2b-256 41d7693b20f3ccae2e05d166f98fe55b1657451170b72c804ed9f6b98df520be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ef132cfb638e9a86bd5dc07fb4e1cb895bc55bce6bb5e759366e8b160d0747e2
MD5 d4c566fab142956479625da7a0043438
BLAKE2b-256 f000f083d7c8a4ee5d0bb21b4d3144e76de9f655ca4dd0bffcb95baa5bc47a62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cb75e33131946fabd6319061df3b8b1d588fe0963183280e9b5f49f7772fc09
MD5 c2a768b2603d305cff9913dd43582e37
BLAKE2b-256 6ead6ad9af1596ab5f284bb53954be41396e13d23c81cdfe3d945402e8ee0215

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 aeef8563b82ed4af328f98e5041c1b4800d86f68f857ffd1577d4d47dc9aa6cd
MD5 4f9447bc44d7ea456b3c41e5c6522c53
BLAKE2b-256 e809898fe2f8196fa7ab825f5fed786c68581fdac7d23a8e20baa0cc01cb2f0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1e20b3ecd0a711be82e964aca28554eabbc31ee69a20e5e7b8fd42268af46212
MD5 bfb695445e528c215c4c8377351d24c4
BLAKE2b-256 2cf4dd3ef995f6b22e23da145ac3ecc91e1f1fc4cb572b7f95e6b2b11de16782

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.6.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.6.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.6.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79284c1dd702f4f24ed1a36e51555c907dd237b6c0d829595978f4089a2aeea9
MD5 cd22d3c1a2b13ee9fec7d801c8ed6f40
BLAKE2b-256 fbbbab92f8599749cb6063416dd9f46e084004c4e8db68e2eb768283012a6d27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e80bceebc9b58e959bede9b26cafe15b5b9526f3533a6dd06330c5da73cb9329
MD5 65709bd08435254e313e5995b0dee2a6
BLAKE2b-256 7c3e8dd9cc6f3e697e4721e53d6b9ca8c95c9d51ad2e759e7fcee6885e5b71db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f8f5c1c7c69a4b00889e52d9304a918a5b49010f9645768eb5fd0ad404f790ba
MD5 9b0e153cb8fbedd59242f3168cf8cf0f
BLAKE2b-256 171055f0860ed359d290e0eadd410da47ae720a1acf0d8362149e22acbe63223

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 839faf90a7eb525a401978dc925df8c44bd12526e8ba1529b9f8a7106e729637
MD5 c96ab8c0afb67195ba9bacbf4cf49e8a
BLAKE2b-256 fe26bf8093d117cb6c36202ee7a2127f672c7b0c81f0c104ce28124534b75efa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6c73ae37dbf9207727ac095dedef864c05d836eaec962a47b3b64eaadaf1c6b6
MD5 618cf4aa05c170f07889420ff2e73613
BLAKE2b-256 f7529ed88f528b9484f3847f07b9d1d014b496e048d391b4bc04cb0117bd71a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a838296f5b84c920172fb579cac894d255c1fc25457c7234613ddcfa385e49b7
MD5 38c17b40e1392b0d7801b27ef588b65d
BLAKE2b-256 30d86be904d20345fbebec583ca83676e01f30c76118b283eb666d8ec8291ca1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b067b1ef9c8e41fb0882c828aa37829938b5c0dab067eca72b23fc24c563b9da
MD5 02b49aea5a777e97f25a0a09122c000e
BLAKE2b-256 d1adb529f92166da61f496621345f95d2dc583c8ca5ac553c084a4ef6c12cd71

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.6.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 291.5 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.6.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3e689af303df287142770abe3a48bbefd24dab4a09da5807d0e1fa8c75bab026
MD5 c19b6fe80b9dbf7b6af1e49b041ecb20
BLAKE2b-256 ebf446b2f29d2938a80e56e61a19f11ab093f531a9f8cd0ec8eeaac1246bcd99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28fecd73459d74910ae1987ab84b7bef690d3dd860948430dd5555108b006daf
MD5 4db2949a61ee10e1fb96819d5334c2ba
BLAKE2b-256 df97c4cecb3e0ff53563ef9819f0395d919ceaae9c5147392ac23bac7afdb20f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 df27b57d214a3124fbe4e933ef5a903d4567f154260d9aece8c797a987f2a205
MD5 de93a1e52d061b72ad2c3ed19965025a
BLAKE2b-256 5c3b19928d60ea7d25820bf12ef88de74534ca85b56ff7cf13c1b0e74e3a3d7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fa305a84087e10d7a85e8a8a3dcba8cdbda4868f2180173b264b7b488fd37c55
MD5 5b7b6a1e4e3084f54cb134678af05e9a
BLAKE2b-256 d8604672f5110b9eb01388cc6225a739e3a5fcd749a63a9c4c1450a04fa27113

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2ddab55a5f54dec8acfad68ef70f1c704fd21919990ddc238afbd6f496e61c6a
MD5 9b1c4a5945e8533305a626c81c006933
BLAKE2b-256 1d2201b92a600505620e4cb5f20429e181f30458b7207ca8b52ca5ca6068c35f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a13cfa3410a75e4cb87abdb669aaf79da861cb79299159054ff8f77b9671bc40
MD5 c5008c5c4c0a6a42a6a1d88bb3345e3f
BLAKE2b-256 492a792c65dcc1e45eb0c1bdc012ee94b84867186bfe27a860d0813bd216f03b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25b5ddc789480072551af571a746e9500356b2aff0499861cf2ca07ea7431e68
MD5 f89ea90739dfaf39cce919fed155c79a
BLAKE2b-256 066681b30991be83237529f36335ac3682bce26409064b906ac6122874575196

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 15b1aae0f64cd742df4bba1d989d0a09a6ec619202543fdba684640454541fd3
MD5 5577718d7ccab5ddbc6e678ee84fc7b9
BLAKE2b-256 179b37b9b146df1f5452419a96071a7017cbac212ec9b137d7a88ca46dc2aa9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.6.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.6.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.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e39258a09b1c7ca70b5e94a5c5ccfe4700b4250b8077cfeab31d0f79565d4c9b
MD5 b7ad1b31972f9e0611451e87d65e1d2c
BLAKE2b-256 3826ce90e9eed6f25aaa4a4fa305a2aaf2d2ad81fd69de8eb248ddd91c80d1e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 64b94d7a836568926a3309ff510c7f8261b881b341fd4992cabf4f0998878f8a
MD5 69d211a6d4ec16a5c1def6ae4c565168
BLAKE2b-256 57b2beeca7393a8310debd82ee2f0ce5c1801e8d7cb673f7f226f4a0866ca238

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2f723219335387d7546412d8141e0303590600949b4184a1391a0c6a3c756058
MD5 64ea52dcc24a3ca8d2e2dc5feddcd52f
BLAKE2b-256 e44ddfb665806ba4f74bc48071d32006843b53568c4a17ff627a3061de5eaa09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ba9ac10fc393e5123a08802e0e895a107cb4a66b9973d2844dbd8a343111e59
MD5 f7f168dbd10887c30fd1095a6b62be5b
BLAKE2b-256 69f5392bb7dce7363b77bc5403060f418fad438b9cfdd3edd10d65cee7d8fd11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 711e6b98f8924e8b4a61ff97ab6321f33de024e1ed6a32f5123763aeda8459be
MD5 c46edd80aa6f2fa51065c9d3fe759836
BLAKE2b-256 d974a5e98fe108e17c91d9bc590a19e77f5d47d579e34d3f5bc098a949d6c27c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b6c8b02ab0ccb2431bb7bc238be91d158b308915e7b07937388e540466fe7e7
MD5 b020e57be42737fc5a4f71ffe931d65a
BLAKE2b-256 5eb69479e6f0f18824ad38e8d7dd85161ab0842a198be669421232925bb30960

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5918fc6b31437208721276964323933cd86077b8d5b469c59c1b3fd2c8220a05
MD5 14b166dc5c666fe4a95eb983d591d6b0
BLAKE2b-256 5c3987cf3d883d386c10ac52f5322604fb9afdd204229f4c47d4a820a839b8ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 65048ed08c5124f05ff9f355ab9703014bb2dbe7f8d9948ce193685b1775f442
MD5 c0c2af6f07abcdbdb6e47c041fa47a77
BLAKE2b-256 8fdec3af43eb8df6f2581e157e18a3e0121eadb826055b2fde3f91ec188689cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 b4bddfcfb6679215d6f4dc5f79a1f9301af339480d70527a14b57a1f2e6b6cbf
MD5 9d7b959983b0f97f7d88f180d4d2bc86
BLAKE2b-256 7f8b854d4a47bb8b7a48bfb2ed381c7b03a70efb4fc49f0e4a1509b38a2e1727

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 30576f49b82328ec8af16c11100efe52ca88526f71bbe100ef6b4e707dc13bf2
MD5 fb3a2e61035596f2209755c22f835e4e
BLAKE2b-256 7c3987a665244a65f5b87a06b848c29a8cce07e91d59c5988ee2a32c0293a21c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 4c68a9ed2df0cca51d774c521e68a34d2e3d9ebfc687ef8096adfd4f345b551d
MD5 949d3fc74d0e54a1f739dd22a9596dad
BLAKE2b-256 36482f8323bb0e3ebba88b54877a2979afeb83983fb2ca572f09ad61aae2d3a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 2ace939e4d620e119423606f2d3d7115f8707733bf57f279ad9a9383f875986f
MD5 210579dc0ad251d61535c88075da02f1
BLAKE2b-256 3806c430537d59c55d49bcd15ecf4b1aa965453219caad810a4f2b484816f4be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 03b7c59c71f7a597e2bcb3f8368371e9a660a1bdf1c37afc1f1ad1496a013c19
MD5 2a0dc7afa431f3b0bcf20a2c95cb12b1
BLAKE2b-256 2b6cf7116dd2edc6f960545f0d8616939eae3a20031b3b6669697d4f9fd83b2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 08793876172551a930ce4d65c712cd516184d1a97070d4a1193e05bf0cf7040d
MD5 87c07e620549d35a1a9699081a1a189c
BLAKE2b-256 583840ba081c6c71f0f22c64d3d54b912ad75a4e6812caa1397cbb15b5693b12

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.6.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 291.8 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.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6430b34a2ae6fcc604672f4f913102563473d9a015bdca1ce8c95041cc1f2677
MD5 47ad4372bd272c1823bc4b1183f0d9c2
BLAKE2b-256 81a319fb8c48d94139481c5ccaf2fb54c31b543fa635fd7bd7399aadd15752ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b951113113ed4b8d173418a4f155c14b739dace626b3fa3f82be1831958d39e4
MD5 1201d180118e241f05da29845a59475f
BLAKE2b-256 18d79f61f612f8a4193484c78a1f26db82a50141234189885113ef0085a8a961

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 23a793f2fed4dbf0517319759a2cded0b0dd8e8d3797fe30badd5693e320c175
MD5 26864fddecdd83c39f3736fa56eff110
BLAKE2b-256 ecb9955bd604f692c550c7cb66d00bd7691ead5c86df8ebd23d7254eeaa90789

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 97e8a9674652496c7612b528085dd5a296c052a2edc466ca1bfb7b0b27820413
MD5 1e47c4dbc5ca78b8f004079b995c31e2
BLAKE2b-256 ec1ea9c003fe4d14bd4bf671598d4c7dcc1cef51e3513d9d7111ba1d07b6f07b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7741e44f7938ec94f9a52678c8d19b7bc548522ffdc39c9e4481af8db545fa9a
MD5 165c3a745d1e58ab1cd675d18d026147
BLAKE2b-256 56b299a60fe4d1aac8053769d2463271d5df37a7c11c387072fdbb0b16aed7f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e514c71ca72f3b56bd8fbda1a6a5b7d1100a2764b42a3c74a38841f25f9b00ab
MD5 9806119cf840f11e6fbbc147675e09b0
BLAKE2b-256 f56ad77f8cd2ff642d3b3652c1ccab5b6583114dbf10f8cb0143531357c83998

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66cf8038893c7708ec345ffb3ac63c775d10f430f323ac2f0334fdb6a397c57c
MD5 83319f5bce6509128afb87dfe2612990
BLAKE2b-256 18aa83f37b81f3b8c6ea035bf260ec374648bd59372894c02323dc9de3cbdf77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f69365ee2b836939137de024a302395a1cb8654fb6dc5ffef6381105259c8f87
MD5 40bb3312d624f19bbbff29324e9e07d2
BLAKE2b-256 63122853e8b6c03f03795b6548ea61f82cc104d4f7ff2523a04bc69f46984663

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.6.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.6.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.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a99710fbb225d459d66def4dc2bb2cd4a9a0bdc8b799fc0621cfdd863be9c93
MD5 ddab29a09dbe06b7ec312b5f169671d4
BLAKE2b-256 6bb2d17b2722c636d64b4e77ddc68d8d0625719d39f94021be8719a218af4c0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fbb746522ebfc11155f1cd688e2c48ef3d74125e38b63eabdaab068a055c3e88
MD5 93b20039c73aa4c3a41b31fb7c3474fc
BLAKE2b-256 e12ba17b111b631e1c79a0e570881c1a266c661b936585afa395435a458b1991

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 beb43e9885202c8d4f3762319ed4d5e98e197622afbff8439fbbdd81d08938b9
MD5 c5bfcb966d772f8cb92d73fa6b8781e0
BLAKE2b-256 e375f16b1d3e33ca396525847c81d96e3de7bc74d2c6f9ca2ddee76b0c450697

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c2b1f4a640c51130caa92cef5bf72bd3c3dbbcfbf814c37403aa0601b1811b0
MD5 b88944a170e7ebed7677c2c1b2e10729
BLAKE2b-256 03957ed25c90369360f96f8bfa961540845e063377c32a43b775201af66a588c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 460fd6b3f338c659507ae36cfd6b58ac9942a2ff233c5cf574416dfec0451a84
MD5 11b3aaa36bb630db3bcfaf521c8c57e0
BLAKE2b-256 2e5e0cf66f12472fe3e082cc4134395a7e0b8746cfb30aabd74251ce8fafa9a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d146926e997d2d3de8212bdcbf4985344a2622ca3bec458d8908000a84fd883
MD5 eb48696bd4a8b21022b8ec979545fcb4
BLAKE2b-256 0c76f7c02efde81ebb9993586f9e435d2fd1191a6f806f640e4eeb8d004493ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0466b14723f3b7697669c00ee66fe16e30e25636b286b0a923fa86fa3d8a753c
MD5 a1e7abcac60cd5a3113df5b45435eaa6
BLAKE2b-256 1ebb009af3a9532d4cc66d5385391c512210fae32ab2442605f26aca1d8d2957

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 068ef3d8c18815a2e3a752f766313e19910e7c50939b956923748d9c04ebcb1b
MD5 bc0e9ed2c019e543292a9aad36772b94
BLAKE2b-256 efdce902a3f1eb92c4907b5f47f90cb3c2734ee315c4ff67179fc111343b45ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 10b61850c4112952e05aa6e6cce8c9a5936fbeadb321e154216705cc76a14afa
MD5 a42c7e2c082a5bfa95b05bb735e9ce3e
BLAKE2b-256 2af2f22c19b4cdde429805ff5ac8dd77a95569a7c4cb8991741b2ff0d538f220

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.6.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 291.6 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.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b81b4cf3d6e0ad7ac92bef248f49fafc954262c5fb0f7e19d6aac497e5a856b2
MD5 988ec301a5cb4de01f19860bae09814e
BLAKE2b-256 9342c5a66c47320bd12ce84a7341330ea582d67069bdb70214bca0b6bf394cfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd085eafa2aac6f883afd28210a3231f717f25409a1e44a39bb7b04c8c5b5646
MD5 d0c2a77425ceeb4fd874283b0ce790bd
BLAKE2b-256 81a41692fbb88af8aaf900a53619fcc95c9e45d9ff162223a47fd672a9893c8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2914abea516704bdafb2090acd3f15b5f9debecfabd15b8dd8285b2ad3b92209
MD5 adc809ef51ec2c825525092650b744ef
BLAKE2b-256 4e539b9db30cb2c148a69c40ad7647aa787338041f3dc81c5b22113286e590e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b0ddbcd2866b8ff1a2836e4b0e4d44788f5b992d83fac75a38cda8f9a2bee079
MD5 3ab5b6df45308d925de7b9446d3fdf4b
BLAKE2b-256 4528757daf2399aa71bb37f9f7f48b42ab03fc51c340eccfad2fec92a23f6aa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3b6713371f8987a1178df93cb36f29eef191f224021e2d656b2f11ce60d26816
MD5 66943fbf70327033d50f1a336cc59eae
BLAKE2b-256 25fefa28509d7ce2ad59404e7ce738a2fd858e12dfd9a896629f10330222a7fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 481a1e9bd8f419fdc625307aa20234687f99368c75df511ef589693c5fea4c6f
MD5 61d928d90610c6d035b897e3764e4e21
BLAKE2b-256 8348bd2b91100ee4fe6bb4d816e3659cbbb0cda5dd32760d2379c54d1752ec25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28eef3881164f3c23ce58ed59e4684103bdd279583eb2d299858c9e9b72fde9a
MD5 c18dd6a5d3d1a8e36ff07be11da92936
BLAKE2b-256 d91ac7ea5a0ff607a1a6066bb7c7cb65ae20e2f85da6adc69ab77fd8943e180c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ece8e7288db5b827ef8c64b2f78519f1a173a8991a625978fce02eccd7654fe9
MD5 16514535f2d21b9817ac3857769c608b
BLAKE2b-256 a152659686bf8f7c53ea279e1c44038504b82a6901cee2f5ae83c30bbf581301

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.6.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.6.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.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7293fefe15f0e5852bdb4ad1e0e26f3cbd4d3e61c19f751ecc4ff34bc1eb237d
MD5 6d8d0e508a3efc72d9ef705505abe27a
BLAKE2b-256 4d25a9e37dd035027565fa0b7e367da50e88a6ab26e7fd413269aa118e25258b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ae106fe16e36efc60ab098d02478d30aa0e31e1420eb4ecf0116459253bc6361
MD5 608f5cfb79d14e86bb4fb95b10840d8a
BLAKE2b-256 996f7dd45c53c907ea67f635c3900b58bb3347c01dc2ded441402028aae0ef9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8c298785e2fadeab82342040f2d9ce764ce500e6da6a6d99a2de514e63580b5a
MD5 8837666ef88b52e3bf19623282de1d0a
BLAKE2b-256 e4fd5fbdf2275cefae95c4b3509f6db2dc372d0587ebafea342d28781d51d932

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0308990ffc998df3c7ed35276bde049728b5c3956203cae40d80893576a41459
MD5 d45bdcbc79b4ad1fc49cbd31902c4bf4
BLAKE2b-256 b9cbaf58363b0dd0b497282ecef1fa99789b03cc1885a01a41394cad42ceeff6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7d3f64c503af7b60115b97c16feaf75bd191ef2c978d5c0c7725a6682bef63c5
MD5 24995fc042e4b4ba59e1185bd866c7e2
BLAKE2b-256 298ad462c2e5071eb573378f0d26760f6590613086fdf59c2d3c66bdfffb9f41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83391ef5935cc0f329b1abca414ae20ffe40d335fc21a4b5e664f08a74317d5f
MD5 b45917ecff8415335bc9eb4a8e5f0a50
BLAKE2b-256 ef48768edf21fe33bae8d874470b1be136681d4d32eb820a32e1c98262ebe39b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4fc41b2df5529cad5ceb230319e82728096d4b353ce8d4df68a2ec37e291bb8
MD5 f8c9c70c96a8edaab7ea2847ba0ebaec
BLAKE2b-256 c590428dd82228b1b6d62d5a1bf312c29e6c125af6a182fcfd82768ca179dcc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 b7bc9a0b66097f03820a54316d2fdd0beb38859cf98f10d63e94c55450ed8920
MD5 ebe56af4ef0cb392e53b9c09d5affb7a
BLAKE2b-256 741012edc0b401a08aba157b9d331748ac0f0e9890af0a58a9c72425063d1450

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8219d6fceae6b39535c4ac323dba0923d10f781d59962ff3504e693fdcafa92c
MD5 9efb304ba0f5192dee7239e1af4603cd
BLAKE2b-256 84f1adcebdc2caa2e3d3d496ac2501f0ada49ad2942ee36e5f88a944bca9ca92

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.6.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 291.5 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.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c14fa5dc39a804f1b92d63506f450eca5c59647a18d197d1a564b89dac1be1ce
MD5 47cbb61007bbea2af6130d551852f724
BLAKE2b-256 db76754939c3914e9724e20a50b75b17fdc27aeb24d697eb61c3e93438a42920

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8872a0e9f1af975966b5be6af7eebd3dc4046f15e470b719316516dc3d137cd6
MD5 9f6c7de24948c57f34bf2dee54214831
BLAKE2b-256 acb85434897431de92e79ebfb2c02e1ab3cd228e92853b7ff981b2cffcce7355

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d6b9b06323e3ba947c0003b2d70e02f33c90c36bc6262a92eb8201afc4a1aa08
MD5 778b71830340b178d493defeeda9ae35
BLAKE2b-256 36ebeb0f00f6f7778db3710f757d77f5699c325548037dd975b52b186394125e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0eb4281f402b94d397b7482f6d9efd04c28274e4ed6eb57eb1f87bdd091a6a87
MD5 c76719eeb29cfbb7a0e3ead7deb868f1
BLAKE2b-256 6343e2cb44bbe3f7485d6ad8493211f0c8fffdb7e02fb94203fd968751d9fad7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 84f92e5a60a78c72ccda79d0417d311a1f6da18f446423ed411726d545bf7b56
MD5 cbd4bcfb43bb6fae5b3bce9bdb247e44
BLAKE2b-256 6e8c01714884a14b836abfdb1d80339acbb39515b0e92e615c4b65caf0eec257

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e73a550dbeb84e8fa50f8385f7735e9a4735b465851ef617d02f80ab10e44e7e
MD5 a0ecab3bb4dff8df71cb764cc7366393
BLAKE2b-256 3a8887ad188ce971c15bce933e13c4dc2939e741a9cb06a8bd692ef8614c3ed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2d1ccfe088e8279d605011a3575619a74526c261be357695b3258c0f636115a
MD5 4509817f789079b3436534df6e30bcbe
BLAKE2b-256 89bb778aaccb58c4d2fba3482438c0d33c6a3a413710ecdb2ee8559ff28632fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5e9a8370c8ed873083d5de956d6b2e60adbad31e52d7a11111c96ef01d1910ae
MD5 c64083d4c626d18a6797024b84d89640
BLAKE2b-256 e1a9c086507f535c2466a25bf83a876666c9ccde07b17ce81680217ac17355fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.6.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.6.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.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a4ae7ed5a6d813450cc2d818284ea3db9721edcef50a56aae42ea06feec38c6e
MD5 015b628cde71da27b395f8b58f104aa3
BLAKE2b-256 58a38f5737bdb02576577a018c10a4c345a5b4b2e63cc3811baeecc054f71c00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 75578c71644b031118ce938855a53530708db7f4af6e83e2f8840d5a1de990f8
MD5 18cfcda0bf2de20db3e509bcf9f3a724
BLAKE2b-256 6b70441ed36e230b0f66d7d49382c58249b540139c5b1aa096ace1ff00bd7873

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a3c17e6a267d13de9cbf14bf2ebfa87e03d26692456fc67d2dbed9da4f479b18
MD5 f02fe59151c6623f676df6f1339096a6
BLAKE2b-256 5a471a82ede48d9df99c8245cb38622cd1a9b388b34f89e1cb7b6650913b493d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83415af3c64550a56cc20b4cce59bbaa81f21d28466d7adf98feff011ecbc66d
MD5 233570cd5f3533c6a2bbad01f7053605
BLAKE2b-256 5a95ed5b8b026c6df1a59681a73396f63cfd10e17ccfbc6315974745a8b7d834

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 32f04d54ec1fdf3aa648b24a10b1c9234ed2046cc4af7a8850cbc236c05d42f3
MD5 d13371b47764df387b65114bcd2ce30b
BLAKE2b-256 c43492de2f1bd5ee29b24302c871b9f3c19155bf9478cd3af5a0dfd70fa2f483

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6e78d5e28f812b39f92397806ecddd4a6f3bf35531a8c039a1f187abc931af8
MD5 6b0b1dea27cfc75f634431b44b080466
BLAKE2b-256 db144700047713a60131efcb3977a9892fab60bc9dd6634272550b8f1c5a427d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73000459db113a658c4fb0510100ef0e79137b5828bf957b7709aacae4eb1b87
MD5 de5a787b9bfb82cd4b64907c4f037458
BLAKE2b-256 6b8d3f8e7a0fd319b3c0dbf0c4f751336309bb50a873b9185c2f5d228ff0d21b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.6.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 Pingdom Monitoring Sentry Error logging StatusPage Status page