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.4.0.tar.gz (997.9 kB view details)

Uploaded Source

Built Distributions

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

backports_zstd-1.4.0-pp311-pypy311_pp73-win_amd64.whl (299.9 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-1.4.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (414.0 kB view details)

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

backports_zstd-1.4.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (394.0 kB view details)

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

backports_zstd-1.4.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (420.5 kB view details)

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

backports_zstd-1.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (339.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-1.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (409.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-1.4.0-pp310-pypy310_pp73-win_amd64.whl (299.9 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-1.4.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (414.0 kB view details)

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

backports_zstd-1.4.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (394.0 kB view details)

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

backports_zstd-1.4.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (420.5 kB view details)

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

backports_zstd-1.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (339.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-1.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (409.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-1.4.0-cp313-cp313-win_arm64.whl (290.4 kB view details)

Uploaded CPython 3.13Windows ARM64

backports_zstd-1.4.0-cp313-cp313-win_amd64.whl (313.8 kB view details)

Uploaded CPython 3.13Windows x86-64

backports_zstd-1.4.0-cp313-cp313-win32.whl (288.6 kB view details)

Uploaded CPython 3.13Windows x86

backports_zstd-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (495.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

backports_zstd-1.4.0-cp313-cp313-musllinux_1_2_s390x.whl (632.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

backports_zstd-1.4.0-cp313-cp313-musllinux_1_2_riscv64.whl (564.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

backports_zstd-1.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl (586.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

backports_zstd-1.4.0-cp313-cp313-musllinux_1_2_i686.whl (509.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

backports_zstd-1.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (481.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

backports_zstd-1.4.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (566.2 kB view details)

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

backports_zstd-1.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (491.0 kB view details)

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

backports_zstd-1.4.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (642.3 kB view details)

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

backports_zstd-1.4.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.5 kB view details)

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

backports_zstd-1.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (476.0 kB view details)

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

backports_zstd-1.4.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (505.8 kB view details)

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

backports_zstd-1.4.0-cp313-cp313-macosx_11_0_arm64.whl (361.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

backports_zstd-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl (435.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

backports_zstd-1.4.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (445.5 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

backports_zstd-1.4.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (364.9 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

backports_zstd-1.4.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (356.2 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

backports_zstd-1.4.0-cp313-cp313-android_21_x86_64.whl (453.2 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

backports_zstd-1.4.0-cp313-cp313-android_21_arm64_v8a.whl (399.1 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

backports_zstd-1.4.0-cp312-cp312-win_arm64.whl (290.7 kB view details)

Uploaded CPython 3.12Windows ARM64

backports_zstd-1.4.0-cp312-cp312-win_amd64.whl (314.0 kB view details)

Uploaded CPython 3.12Windows x86-64

backports_zstd-1.4.0-cp312-cp312-win32.whl (288.9 kB view details)

Uploaded CPython 3.12Windows x86

backports_zstd-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (498.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

backports_zstd-1.4.0-cp312-cp312-musllinux_1_2_s390x.whl (631.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

backports_zstd-1.4.0-cp312-cp312-musllinux_1_2_riscv64.whl (566.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

backports_zstd-1.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl (586.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

backports_zstd-1.4.0-cp312-cp312-musllinux_1_2_i686.whl (510.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

backports_zstd-1.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (482.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

backports_zstd-1.4.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (568.8 kB view details)

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

backports_zstd-1.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (494.3 kB view details)

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

backports_zstd-1.4.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (640.6 kB view details)

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

backports_zstd-1.4.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.8 kB view details)

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

backports_zstd-1.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (476.4 kB view details)

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

backports_zstd-1.4.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.6 kB view details)

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

backports_zstd-1.4.0-cp312-cp312-macosx_11_0_arm64.whl (362.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

backports_zstd-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl (436.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

backports_zstd-1.4.0-cp311-cp311-win_arm64.whl (290.5 kB view details)

Uploaded CPython 3.11Windows ARM64

backports_zstd-1.4.0-cp311-cp311-win_amd64.whl (313.8 kB view details)

Uploaded CPython 3.11Windows x86-64

backports_zstd-1.4.0-cp311-cp311-win32.whl (288.8 kB view details)

Uploaded CPython 3.11Windows x86

backports_zstd-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (495.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

backports_zstd-1.4.0-cp311-cp311-musllinux_1_2_s390x.whl (631.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

backports_zstd-1.4.0-cp311-cp311-musllinux_1_2_riscv64.whl (563.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

backports_zstd-1.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl (585.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

backports_zstd-1.4.0-cp311-cp311-musllinux_1_2_i686.whl (509.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

backports_zstd-1.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (481.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

backports_zstd-1.4.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (565.3 kB view details)

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

backports_zstd-1.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (491.3 kB view details)

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

backports_zstd-1.4.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (641.0 kB view details)

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

backports_zstd-1.4.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.4 kB view details)

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

backports_zstd-1.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.7 kB view details)

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

backports_zstd-1.4.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.1 kB view details)

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

backports_zstd-1.4.0-cp311-cp311-macosx_11_0_arm64.whl (362.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

backports_zstd-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl (435.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

backports_zstd-1.4.0-cp310-cp310-win_arm64.whl (290.4 kB view details)

Uploaded CPython 3.10Windows ARM64

backports_zstd-1.4.0-cp310-cp310-win_amd64.whl (313.7 kB view details)

Uploaded CPython 3.10Windows x86-64

backports_zstd-1.4.0-cp310-cp310-win32.whl (288.7 kB view details)

Uploaded CPython 3.10Windows x86

backports_zstd-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (495.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

backports_zstd-1.4.0-cp310-cp310-musllinux_1_2_s390x.whl (631.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

backports_zstd-1.4.0-cp310-cp310-musllinux_1_2_riscv64.whl (563.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

backports_zstd-1.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl (585.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

backports_zstd-1.4.0-cp310-cp310-musllinux_1_2_i686.whl (509.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

backports_zstd-1.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (481.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

backports_zstd-1.4.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (565.3 kB view details)

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

backports_zstd-1.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (491.2 kB view details)

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

backports_zstd-1.4.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (641.0 kB view details)

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

backports_zstd-1.4.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.4 kB view details)

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

backports_zstd-1.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.7 kB view details)

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

backports_zstd-1.4.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.1 kB view details)

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

backports_zstd-1.4.0-cp310-cp310-macosx_11_0_arm64.whl (362.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

backports_zstd-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl (435.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for backports_zstd-1.4.0.tar.gz
Algorithm Hash digest
SHA256 655be611252f717bc78f2227e3773dc393c965f228a81e60431f6d47bfdb6643
MD5 ae4942718d78d1b2d0c636354f50fe26
BLAKE2b-256 13400e0361a5c78f80cb11b07ddec0faf63a9985b9be4dc5d15592e48ce35eb4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-1.4.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.4.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6d11051444dba7dc10da1e4fccc309a824d8fbf4ca7503cbb20f524f37e39c67
MD5 8821b5bbde2f8c09b158613dd8dcef0d
BLAKE2b-256 e6c97c56d128c1f5426cdedf22df3297965c8440458fadf1611cf01432ef19e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.4.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.4.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.4.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8563678d6166e87f1fee8ef24f3e4b9e3d22af1c423ca7ce56c99424c3a169c
MD5 1715d91540f2d2e80dddda4bc3d72e2c
BLAKE2b-256 29bb93ec35462ed49d5c24cf943acafe6e41236ca0fd1655ac8dcdd10a6be781

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19b9e674d16f3f73c018a899a2a02d27acc260cbcd167af00cb2a9649a81939d
MD5 2546ae9f49736375c07b0e78c4007ab4
BLAKE2b-256 e28279af6c52ef353df8270d5f23117efc63dad20ae8c98faa6a375e6445856d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a9fec1f706434b1a505fbe4ca41a4d3d3bcb8aa125f5eb9bf28d15bc6a1c3621
MD5 6e409bd9371fd667f09f6249600fbe59
BLAKE2b-256 77ce1f497b69ffbacef7ee23ca30d0657d33f89d26b1f4cc6bf7ec1f85cca1b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07df8bb2b2063d52ca071e02027309beba474fcbd6654f6b1ff3e6e659fafeb8
MD5 c8066d9d67dca31a4014bba564dae525
BLAKE2b-256 8f4754c5d2c84c14a0f13ee452eabba18b797f424bfdd31e53a294f242280fb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9dfa9a7cd529f54eb7cf2769fb9759bb29c46a0c334f24b0d1a9311e9421f4a8
MD5 4ee58d820880bef740f4f999d788eb0f
BLAKE2b-256 be9687304c86de46a52cfe363102433a0f8595a99e792766fec7ebf10a87144e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0c78c97abc3166d0e420d13398a7559f755b7000d69c6732cfc00cebb0fa0660
MD5 2d895a243e7b2ea2bd752e3ae7115e09
BLAKE2b-256 91556c920f7111f0dcee24c0cfe079690d9ebf3967b4912fb7768c0e9358175b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.4.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.4.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.4.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5db3c31906055b8cbaf06f0818ab68b3269493f3d6d5203639d82bd550bbdb2
MD5 df5116c7f021cbcb3a37aeee2f0a7206
BLAKE2b-256 5dad6a52a7e63e92aa926eee0397b03d09227d62cfee1d0e03a7cb50c0cc1601

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04a548267d16ca0085542667f6ba06f1f180771a791877966b66b9335c1ec35b
MD5 d84e1b84b736471377180a9a7ef2faa0
BLAKE2b-256 8d609c87bdb4faec5d6f0ee305127230beeb262db5c1f3e0021a6c64262c2e42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 18f0fef8cc4c2e493e0c7af5d9b0b3f420227dc2538089ca7c6e9e6d2c823a86
MD5 0de864323001996edcee15962c5083e3
BLAKE2b-256 373deabfa44eb809e539a38560430c47ba3ef82b9f82fa14909fc8c5ae5474f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea2d511c31626b5f861c5bdcc20faea1a833df65728f7372aded6f832cc530d7
MD5 b21a6396532473df452a3ae96937e61d
BLAKE2b-256 bee68a5dda4b3af02388991b4d3a549246ce8704110e4378adad87c89bf05e1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 06083e297e7f4a159696c6c320a16f3f958944c54793bf1b3d45c87020c4fd71
MD5 c31e9cdd9d9b1d6abc26ebaf4a26128a
BLAKE2b-256 5b0d6fc1c300267446b5f737efd38727c3bc486926c40422d475a8e55ea64b45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 50ddb677384c349d1cca6cd54c37f2e4aa0a5811c3e4ea427b6cbf63cd1fc4e1
MD5 b7bbad31177ab5d927d57e2ac5495c82
BLAKE2b-256 c426bb9330535bd975d5c6f0764461f4ccfecf513a1c6095e1fe05b7453c2707

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 37c70e9fffc8d0b3d755e1bb1822387138a02abe43cec05914827345fd926a46
MD5 ecddb731d152af331132108e67378058
BLAKE2b-256 9ffff5f08621f40d2c5c0e30403d6700b33f54c60d6eb6a2c7e481d8495098ed

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

  • Download URL: backports_zstd-1.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 288.6 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.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 24d107d5d32106cb9c2ed17bb236ad5e6ba2e1ae9a5bec650895acf71205d82a
MD5 dd0a503f5d20a1b02995a04c89315526
BLAKE2b-256 88157fb513b17a0b0afb00859c2d9b64c8b8625915ad625bd270fe39e6fe965c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03ede9c0584d2211e699955fbfb936c11f7eb57a91f1499ed61d7a743a656cc6
MD5 6bdc6c61ba7917e7411c93b45561abaa
BLAKE2b-256 fbb56e5cf800234186bf3b9346779455cf9f2b2082eda9dba8080f00ecc7bb38

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ed3e2b0c762eb4c61586d3f2468e2c3f59cb2f66b61419aa18686468a9551ae8
MD5 c5af4ac1af3a50412ec9a6b15a06c804
BLAKE2b-256 351a38b039aed0b9656f029c95021460a5900d670bb8001ecd67a684862b3704

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-1.4.0-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 500970de01c10608a4f225c23b799c97164c0f27cadf620e449d3461c824590a
MD5 0bc708d9349259693eb156c0eb921edd
BLAKE2b-256 2d9943f3ae1b30f31968394730eaf91fcd2d5ab86083e8936e47ccbaed999c0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3ae51abe97c7e4f55da4bfd3ea6e2b8c8ea51cfb6a9eaffe4b083a03ba402e5c
MD5 864835bcc68f608d7052fff3035cfc41
BLAKE2b-256 99b543d9a674d3f168da898063914dd1e8914fc7a400c453ee1bfb950aba5fcf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7eb5eb0606cada9a80300936c7e2a6d1fd4d6a85778bf79a0123672c59c7d64e
MD5 37d09924ce499f0a86d481308bb003d9
BLAKE2b-256 b956284477ddd0eac84815049f2f2597153cf0d8c1f0d603063f4b57e28eb589

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ed1bab84018895b45b78d0206007854551784f0ca6afca708c3c999785b1fdf
MD5 9da2fc552e0dd5726b44ace3b37ed189
BLAKE2b-256 65c0ee0b02a74a1265d46ba66c601b37e23e61321250557744b7cdd86a0578aa

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-1.4.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e1a5abcb3ceed254a93e5db570336b4751a72cfb7435fa19cf5f5ac99ba12eab
MD5 f17b3b04b3a7d46ddd49c7924be30f06
BLAKE2b-256 44604f77a8b3f95bc768a4c15174f857f6d414b36744c236165b745c34158e56

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.4.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.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0807b944b2642e27fce7e0946cc91cf89b5a570fd63414b8100c72b97883f025
MD5 52732a19f87c62286309bc6db635189a
BLAKE2b-256 073eaa0b9fc92c4100b931358b083876f227b619d4373af1eebbb1725c159df7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1965d5e417637c38ec2d4090fb8f777b9783f2929af2f4bfd9be1d32266f28a6
MD5 8475e6288d50e7034e727bede8b35287
BLAKE2b-256 e636b875158a70ffa5420796772e10ad31f5742d1028b6c91356050eb870fdbd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 11742cbf51a068c5fe1b3b95297e5bb8fd9b90bfa45a02eb59a8269a34e26394
MD5 78efa9572809818fcc4db742bccafb86
BLAKE2b-256 8e570390ba883c8b2f3d2da7e008da147ded0c61d69d5a0be98a624532cd3892

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 406112854cee9f052c7cca22840094b5d3a5456466b9b90493598a7861c64e83
MD5 4a80ceaf27a2ac50123e1bd29bd09ac8
BLAKE2b-256 e7e3a4ec786ebb4793c69e8f449012aa8f6f2913fdfd1841ee23dab6aab3b09e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b5a28771464ccac584ea7712a2cb34491106769dc02a0fa5d76e38c3ce3ccb4e
MD5 06c8172341cb7b73ff3ee1524e548f18
BLAKE2b-256 b10a9467dd583156dec395a0858729ee59f49ffb23b19db3bf08fa5dca61ac75

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13c7d3ab1382dea0693aa31ca076b3dff75235aafafc2cc2d323258db3dece93
MD5 a994c6ea1a3cbd3076870f28ee6ef472
BLAKE2b-256 dc9aa688ff0ac4614c6880ab29a9497cdf26edf0474b09db1710084d1b2c1de3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9c9f7c7ebb6d39a2d8b1c2783b16a1f2f4595879265c4f0aa00b053c09d23993
MD5 008a47fb8c389f6f7e639693116c7354
BLAKE2b-256 bba776f6c859c4c8dad9e00aa4170cc6ce3729422196aecbe68af54d404db85f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-1.4.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 113852c6b4e52796955c5d6d366828f8d859b4b96ad57fafc627a7fb691cdd62
MD5 e0363935ad2c695a02edfc048bb6442d
BLAKE2b-256 4c034764e4d8fa23c73fe93eb0da0f4b16fddbca79ab48894bc92dd8bd785f50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 ec2d86b6fed33e802098e8422d13eb0b8a5d056e2f42ee3249e1a453979e8203
MD5 9519efc978773d8fa1b4cbc29b05812f
BLAKE2b-256 ce773476b7976305cd8c180bdb8997b9c52f8ce06d8c5f2e60d4ef22bca2f906

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 4e9cbc52a2bfcb480da5d9b4090307e4155c22758801d596c7a2338ba4be3629
MD5 2cd3c3c789317a9d3bd548e03357c9f8
BLAKE2b-256 d8fdc8098ad06196207ce7b799e528cf6b5b6ffed886a9468073606267b8a2c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.4.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.4.0-cp313-cp313-android_21_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 7bd3514bc7f57f39e2c8df33ce82b38a17a27130fbed0028d50d3255f385ea95
MD5 da9c1f5fba1fd0ffa3fea81dd1c23469
BLAKE2b-256 e08b84de040b1a894dfa4677f21d4a634543eca8a8bf77d00c711ef983c27ab6

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.4.0-cp313-cp313-android_21_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.4.0-cp313-cp313-android_21_arm64_v8a.whl.

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 84503d12e7b2d053c82abec506925eccd22c3890cfc27d6c982b0e6d83242d4b
MD5 6d534d4ab05bf3a2d961ced07fdde23b
BLAKE2b-256 e49aa490cbe666655004c433b9c8c1076bdb1a5945112c92f1abc20280f9f4da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 94697008a72e3c1297986d558c228a7ffc091c4dcb77ff81bf841855a78dcdfc
MD5 7563a3ac4959bfd2881bb93cbaa7455e
BLAKE2b-256 1a4b3eae339639b7d97b1fe9b89e6489468ffd366d31cd8ae935b97a740fdd5c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 22c47d8d712202278cb148ce07375518a8f88586cd481523d1043553d506b6e7
MD5 de4d5a971fbf597ce49a0f6bb47b8c41
BLAKE2b-256 d2ea32b5826d6aae92f8d8120b9871329aae1260719030b29676079d07820088

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

  • Download URL: backports_zstd-1.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 288.9 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.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b91bfdab224752430c6daba8eff8f57800732e818b070a21a3332e734445438f
MD5 676a6afd7ed6811fd8988c4ef431e43b
BLAKE2b-256 2b176b66bdc5ddcf4c01ef791ab8b14507502b400ffb596c8bb84bff82ed44e2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b8fcb353220440267ca0c80d1ca4b86e64630860a19fa62a7f61c5062816f97
MD5 ca4d3a0c2931c0d8b16bb227d6469644
BLAKE2b-256 88d6cd4e0f33380fc2416794789849698f61e2577127d2dd146bd537b9b6c885

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bef65145c8bc95ae91de91d777c70ed77eb1670c700b31920ad06b273780570d
MD5 cd2f41f3ec9fbb2df7b1afa694135cb3
BLAKE2b-256 cb45d744dcb801cbf0540d52becf130dc91e628f55239b23b71ab12b602e97dc

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-1.4.0-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 53698379001fa6368842239248bcdac569d8306508cb112d6089c3219148721f
MD5 02f3f5241894c0dd666c2e4d7ea7a04b
BLAKE2b-256 d62b25fdbc3572b739d5e97518a7163fb04e714de61626da53e848c5b1ef7dac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 205b9e4b6312418bbd288ccd51a4209eec1183b657c0032c37252eb582f98fca
MD5 de4ffcad58d729befd46475fa4803ff6
BLAKE2b-256 1cf93100ded2d1fa383d6c5b5f432632d02965b2a4789110c5d4a4a22dd25002

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d190cd2762fe0000af21083326c79e496cfb8fb626cb1fa72ac938a6891ba52
MD5 33041678f67e05ddba2815d7bec2e896
BLAKE2b-256 dc836043e34417311178c3dcbcf9c7e64217898f70af0338f1f2829ba40c4a12

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de2c533aebdc3346f23ebd5cde555dfec855ebdadd1f43f305132e2121c18be0
MD5 36d9f332ce57dad86ee66d506bff2472
BLAKE2b-256 12c02652674e1b1a58a0df9623b7b8eea8f7dc8b56cfbb1312d4242c8f29b5f2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-1.4.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 04ddf9d178b16f5e1bf7cf91bc6890f50e88521f00bee4fc4b8f4800466cb4f1
MD5 4492943ab283ba034bc0edb828f37e9e
BLAKE2b-256 28d74b669f1b6fa791a3d460c70f395bff34d16a7e9d29842a57cd0243f2ce5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.4.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.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e2f5a4eae2c0149c12ec3ed7b033fc1a49d991bcd65c46caa98962650981a645
MD5 df4b2cda733e58a2c55f9e5bb75d4e68
BLAKE2b-256 de8aa9a789bd74eb6449747b879894c72bc5e2d4d905694ede83cb9493c61f25

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 795276b280feb0306cdb49be754c4830d34456547319415e6d15a9f5e66aa206
MD5 816c500fd204ca31ef8e52426e3665b1
BLAKE2b-256 062fc35b0cec8a4166875689bb0de18dbf93ec629894e256a342a8d47f8281ab

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7281543bbb94aaaf8bec52ecf2335fe3b9e62f4e645a70373c7c86c0ef4ed038
MD5 d9ffecf27be5b11ad935b0aa836e090f
BLAKE2b-256 c181255428a78a0d954dec9ab642f5b94a5be77494c6f0dd85f982b93e79ea99

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4cbb3e96004c13988ac702f9b2cd3a83b5ec1a88b87b4af5ceccbb8c7fd6a5ff
MD5 0551b5b1be057dffa10802d7f830cac7
BLAKE2b-256 5862fd82927d7c7a9d331ac531dc25b5f2a4c3aba91f029bac399358d6eeeaec

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 dd6c8cfbe30e8a8352517185f2e926832f3376a871e21b2907a50d56e920b65d
MD5 8472615d417cb3719d446979f056086b
BLAKE2b-256 ebf2b166503ae8714854c8bca8024a73f1bc698dafbcf0dcca380d9b9d2665fb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40e3673dfa38a44cd2f0b47dd0179c056c856fbcd639e7acc3de9c12d245e4e1
MD5 2c2a2e25176d466892d74da517d8a6a8
BLAKE2b-256 4ac55b7414dfcce4b72465a2335e747f55ad4fca037ee3dad48a0aee29eac20e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4f1bafc9994f264c1ba27c8881693be593f4678140e42f53fd9100c4df32a37c
MD5 6bae9523bcae47264448a3a9257873e5
BLAKE2b-256 6610f0a9cd9ede461088fb6693de6da4cd6d118c2b187164680ed69ffe611565

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 653717a0cb728ad2fef2cb9ac1be3b8e94f8d82082deb907e5927a4f53e5ae15
MD5 e40ca85dec338cbcbffb2319686551cb
BLAKE2b-256 12d7604e0ef802db621e70b46b2eaa02cdb6194b636fd139c0c55d10a693547c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 519caa21010e5d04b4d28a5d7174983df6004a05e2a33ff7bd3d9de79cbca66c
MD5 1672e4b41091abec879dfa5af6559eef
BLAKE2b-256 a294c66654822c5f2761b7bcb51cd8013872285f2f1f2eb182026cc166936e3f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

  • Download URL: backports_zstd-1.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 288.8 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.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9daa24ba95c62e54f50ac163d2e678df9187060c09b5ece5cef0499996d47e96
MD5 6982412879602247a6b16e87e29ace54
BLAKE2b-256 07fb015137284bcec9c8826860c804e15bb4ae7b7ac8537c330c4d0ef6227f6f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c4cd20c39aacd0331ff43d517a1d627df31d9a6fcf85e4433063cdc668234f2
MD5 7341ed8c5741036128b556e0a420c646
BLAKE2b-256 787135feb68e7e456a913ca69403a60caea401d1bb9352a39dd26cabcfe3c35d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5068480df23da0f74e34d9659f7ce3b81f6e512a80dce935c6f15a35a7a25be3
MD5 6b86d30594017b895669c387d2b0ca0e
BLAKE2b-256 fa51d3a40aeecaf16628cbf7ad51bc5ccef78b3ca0fc419548d8ee8f20e7f423

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-1.4.0-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4731e81cecc864c474a2f8f30113e53762ae263ed7f5282a52376519d644c23e
MD5 c40d2e17ddc62c77c4558489885d6639
BLAKE2b-256 8afe5867498c9906e72a1a75509611d1d9ff7e22b8458456995c49d4c0d8d40a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 05324b32c4329361461b78014b44c42a834b7eea52f599a2e4fade18c95bc32f
MD5 c686d33cd18164ff4f2ed090df873c24
BLAKE2b-256 95c9aa5fb7aaa9338aecd22787a6bc8393e6dd633536c170e6ce24cb33704828

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad37285b83f6ffab99e49d5717809a97a6d36555f1244b966e8e8c814fe71fae
MD5 015adee854a9c45572f5d70bc2376c1c
BLAKE2b-256 b4f489cd05edd10ee057b276e91888fbad4e0780f9f5e0fa8aec66042a2cf358

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e9646942f2475baab81609ac557399888aff07bf78075ef0c6c833ee1db2ee0
MD5 66b93aa10d7f2e3607c1866bc3a91a4a
BLAKE2b-256 fe882b03cff79a5e73ae835d49aa7e2765740873d2f19166fe4621b3e7547c88

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-1.4.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 30845cbecd892aa849f3606502aeee2d3bb32878f1440be22139f3584792c196
MD5 afb05c724204e8169f1d2e6ca9c12730
BLAKE2b-256 37787d6003d678420c61b1d5d9518069faf84ea408fd0a66407b08276a78caa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.4.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.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51467cc48d2fe915cacc1e71ac504d51224ea48d83da706de7277a326d1573df
MD5 79c4cbfd03da5714eadceb6c7d6266f7
BLAKE2b-256 869a12539685816526ce2646d3f3f05968444721ec5c62815f39226dc01115ef

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 180121cd374ea907a3e76a5b026f9b30a8c85c18d070a4bc12654bdf361a5e69
MD5 e80da8df9fc02d52035314bec38c93c7
BLAKE2b-256 4ce0e43561ea5bcf7e83170e9d15573e036e657cce857ccab4fb6c1857fa8895

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1cfaf8895e40412c6a9e58c2a73667b61658c96144bdbbcc4476d2b75c50e252
MD5 70ddc370b3b28ff69918d2d115452da0
BLAKE2b-256 1ea50d734a48655d9d5303fb2bb914a98d251d7ae28c3810ab88b0fa33a45b78

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 367b1053bfbb51b732700cc7da79ace78f2c8dd864e280e77960578a78dbe5d7
MD5 0c5e0bba86dfbcb8b739dfe2eeb47384
BLAKE2b-256 5174a5e19c0c62faa28ea56507a53c633dd1ae377348860ec4d63a851680aedd

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7dd560da7b5aa857524fb277b9882e9f280c50d66cf2aed783408539ba0bc08f
MD5 5d4d1dd225a45a5ef41435fb17bc402f
BLAKE2b-256 e438d1080e708f7695dba350f89dc06f0ac677a490f7b12c1f31c5bffdacf4a8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76ffa10a01e3f760cedd454e78ba44c81f6fe7533fe9f0b93884ffa0bc369d23
MD5 9f8529fc028e6e6181eb2860db81c31e
BLAKE2b-256 9e158de2cf36960c910e64ae08947417f7767791d4e49f441dfa167f454008b8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2cf117dc4165e24943904b23bf88cc9eeae6084bdcb0a21f1936ce63f17bf0d5
MD5 817ba3a12050c912d6b8e1c3e8724197
BLAKE2b-256 aca3965af4a586310e746bc071f5e0ffdb73930486aa67d8ff95fd1731bba1c4

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 3c91a19ae24852ae84a58de11eeb0e427f824f2a58245140ab65eebe73f719cd
MD5 a9b6bf3400d33c5b3f4bc25f989a9761
BLAKE2b-256 9a38f12cbbc156bfa16dac9d98002d244f7399c4e81f80868dafe466c146460f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c3c85437fdbf6df3e98a21dbea24cd8faa3db46e347667eb6882769924bad58e
MD5 bf67511f09b6c3e9f6767f56a7913766
BLAKE2b-256 240af1e7081c3f4886fae7da8e97ae74840d22f1b38694a8c244f2f4a952da45

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

  • Download URL: backports_zstd-1.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 288.7 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.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0dfdafcd0fdccbf84865ff9414c5bc6ad1131983ed824254f13ef3b07745847d
MD5 05beb9a6cc369637039cefa5db8ccfa7
BLAKE2b-256 e3477c5368c4b0af76519622146131e76f1536d80fee5085d911d7725853851d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2dfd1fcfb584dfa5c68530e04bd128f8e9c83c5a44f8336019a7d0a00dfc5dc1
MD5 158aae36649d801db9e0a911c2dc4723
BLAKE2b-256 1a01548d1aee9bab2df1e3fe2b1442a78806bf2f53906687e82251c8de25dffb

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f16a5747d01d8d35605ad9f52c88b3511f50bc09bd47eb02194dea2149a81734
MD5 ff703ce76f073b6df62688dbb2c56d16
BLAKE2b-256 33c5a005d5bad6c5663edc34b0abb849ef5849a29c112fdbe7e6c5fc530c6327

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-1.4.0-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 107104426de5c36fdec3a9df13ee069f4bda1627c478c551bdebebe7d8492c3c
MD5 42036e49c8035c885f64bbb3c548199f
BLAKE2b-256 f95e00fd7e8f66e1c8583cbc267cf7521bbf568b26db3e2aa0540fdb6c2d6414

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e1e5c5e4609c85fef1a2d3295a61c839fd30528669c748867a6715043ef2b3bc
MD5 fad5a9fa598ec6dd4c8ff062342a945b
BLAKE2b-256 0bbe6f738e5e9f7112d133815d16626b3bac4e9bd04761cc32f6554b5791e166

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 30bc878e8c605bb8f8f60d7510d65705b904aa91657772f9ab294d4adf06da5c
MD5 396fb2675c874e10a763bd8b4740623e
BLAKE2b-256 12087ad6c482bb58a0826842f8280f963a81e6d827348e8789bef5941820e497

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d76472c4df433267b57b835f6ad3ecae7d677fd9b9bed4593180040a78dbc4bb
MD5 45892a81bab0e5a50b8189e28cd2fa4c
BLAKE2b-256 d571c6478273977a477b93c8c3c46582b792fc8cf2c32f317e99f6a4ec433e5a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-1.4.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ffe920a94e0a36ac2d3a0b7e84529664872e099fa10d88c574dae333b6be6de0
MD5 3f3a5e0477e34ce5fffbb05184171f21
BLAKE2b-256 3479e58b2bcc8fd937d7e7b14105fcf16f774f210288fc95cb5f6ae4e8b1e8dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.4.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.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b948ffb0697d1cdeed49ac20595532cdbe4968468426418d399c66e2a4c9dd3
MD5 d499d8e5743addb5031afba29cc53b77
BLAKE2b-256 eacf7fc0d8c3b5bae488ddab183a203474d9066fe77b0b563b3a345fc141ac50

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 de54e2356f873be8772e47b8a92bf6b859c2dcacfe3da0ed8e556e7672027464
MD5 95f433bec04e517a91aefdfbdc2b661e
BLAKE2b-256 e260153078037d08e5eb4f204896c238703ea4dd947e0080a20f63df9034360a

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 35f954914349f7dc00ddcb170b345895480b2ffbfa7a9eb86e4f9840dc91769e
MD5 8ef70b576b966b93f03166d2aae77ed7
BLAKE2b-256 ae285d3961b217c3581e154e25ffa17f695337ca4493af99a7030f164b0e3660

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e5d269184a1c310a69b2c3a8dcb6c87de90fae4e9252852918a740dbca780648
MD5 c4008e133602f882c09767145af4463d
BLAKE2b-256 90a7a521ea420aded33ca9821b3ef98e5bbdbd78d5d41711684cfce1a5d127a8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 67788ada70755df2d8b6bf356a41b4fbdd04b8177abfbeccff778033c4df2efa
MD5 2871b95a125a09d8a1286f807ea3acc8
BLAKE2b-256 929a9bbd9ab394ca6d023ebcb51dcd90c5a895ed01f73e2ea7f91e60eb82e739

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe0e46b99d6d18d419d6657811b056dc91a13e6e7a08a89eb7c1fe4df5921747
MD5 b7d8ee60e3e2cee2cbf436bf29026a81
BLAKE2b-256 9335110a7c77fd412e0d8040774408760b4e9dfcede69d28fb3b4f2f633ada77

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 233267bbd5ab177423a6cc538370bc54761357d29da48f491b1e59a6a03f6ba0
MD5 b44e92dcd69c6f09f7a4d2c647dab6c7
BLAKE2b-256 e0c53b27e7aeee9918474a44c909744aac0f00a834e5bf4bea9aed1ef4e153fe

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

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