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.5.0.tar.gz (998.6 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.5.0-pp311-pypy311_pp73-win_amd64.whl (300.9 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-1.5.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (415.0 kB view details)

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

backports_zstd-1.5.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (395.0 kB view details)

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

backports_zstd-1.5.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (421.5 kB view details)

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

backports_zstd-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (340.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-1.5.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (410.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-1.5.0-pp310-pypy310_pp73-win_amd64.whl (300.9 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-1.5.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (415.0 kB view details)

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

backports_zstd-1.5.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (395.0 kB view details)

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

backports_zstd-1.5.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (421.5 kB view details)

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

backports_zstd-1.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (340.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-1.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (410.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-1.5.0-cp313-cp313-win_arm64.whl (291.4 kB view details)

Uploaded CPython 3.13Windows ARM64

backports_zstd-1.5.0-cp313-cp313-win_amd64.whl (314.8 kB view details)

Uploaded CPython 3.13Windows x86-64

backports_zstd-1.5.0-cp313-cp313-win32.whl (289.6 kB view details)

Uploaded CPython 3.13Windows x86

backports_zstd-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (496.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

backports_zstd-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl (633.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

backports_zstd-1.5.0-cp313-cp313-musllinux_1_2_riscv64.whl (565.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

backports_zstd-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl (586.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

backports_zstd-1.5.0-cp313-cp313-musllinux_1_2_i686.whl (510.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

backports_zstd-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (482.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

backports_zstd-1.5.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (567.2 kB view details)

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

backports_zstd-1.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (492.0 kB view details)

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

backports_zstd-1.5.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (643.3 kB view details)

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

backports_zstd-1.5.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (582.5 kB view details)

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

backports_zstd-1.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (477.0 kB view details)

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

backports_zstd-1.5.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.8 kB view details)

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

backports_zstd-1.5.0-cp313-cp313-macosx_11_0_arm64.whl (362.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

backports_zstd-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl (436.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

backports_zstd-1.5.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (446.5 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

backports_zstd-1.5.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (365.9 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

backports_zstd-1.5.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (357.2 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

backports_zstd-1.5.0-cp313-cp313-android_21_x86_64.whl (454.2 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

backports_zstd-1.5.0-cp313-cp313-android_21_arm64_v8a.whl (400.1 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

backports_zstd-1.5.0-cp312-cp312-win_arm64.whl (291.7 kB view details)

Uploaded CPython 3.12Windows ARM64

backports_zstd-1.5.0-cp312-cp312-win_amd64.whl (314.9 kB view details)

Uploaded CPython 3.12Windows x86-64

backports_zstd-1.5.0-cp312-cp312-win32.whl (289.9 kB view details)

Uploaded CPython 3.12Windows x86

backports_zstd-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (499.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

backports_zstd-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl (632.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

backports_zstd-1.5.0-cp312-cp312-musllinux_1_2_riscv64.whl (567.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

backports_zstd-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl (587.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

backports_zstd-1.5.0-cp312-cp312-musllinux_1_2_i686.whl (511.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

backports_zstd-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (483.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

backports_zstd-1.5.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (569.8 kB view details)

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

backports_zstd-1.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (495.3 kB view details)

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

backports_zstd-1.5.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (641.5 kB view details)

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

backports_zstd-1.5.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (582.8 kB view details)

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

backports_zstd-1.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (477.4 kB view details)

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

backports_zstd-1.5.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (507.5 kB view details)

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

backports_zstd-1.5.0-cp312-cp312-macosx_11_0_arm64.whl (363.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

backports_zstd-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl (437.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

backports_zstd-1.5.0-cp311-cp311-win_arm64.whl (291.5 kB view details)

Uploaded CPython 3.11Windows ARM64

backports_zstd-1.5.0-cp311-cp311-win_amd64.whl (314.8 kB view details)

Uploaded CPython 3.11Windows x86-64

backports_zstd-1.5.0-cp311-cp311-win32.whl (289.8 kB view details)

Uploaded CPython 3.11Windows x86

backports_zstd-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (496.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

backports_zstd-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl (632.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

backports_zstd-1.5.0-cp311-cp311-musllinux_1_2_riscv64.whl (564.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

backports_zstd-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl (586.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

backports_zstd-1.5.0-cp311-cp311-musllinux_1_2_i686.whl (510.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

backports_zstd-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (482.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

backports_zstd-1.5.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (566.2 kB view details)

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

backports_zstd-1.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (492.3 kB view details)

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

backports_zstd-1.5.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (642.1 kB view details)

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

backports_zstd-1.5.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (582.4 kB view details)

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

backports_zstd-1.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (476.7 kB view details)

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

backports_zstd-1.5.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (507.2 kB view details)

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

backports_zstd-1.5.0-cp311-cp311-macosx_11_0_arm64.whl (363.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

backports_zstd-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl (436.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

backports_zstd-1.5.0-cp310-cp310-win_arm64.whl (291.4 kB view details)

Uploaded CPython 3.10Windows ARM64

backports_zstd-1.5.0-cp310-cp310-win_amd64.whl (314.7 kB view details)

Uploaded CPython 3.10Windows x86-64

backports_zstd-1.5.0-cp310-cp310-win32.whl (289.7 kB view details)

Uploaded CPython 3.10Windows x86

backports_zstd-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (496.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

backports_zstd-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl (632.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

backports_zstd-1.5.0-cp310-cp310-musllinux_1_2_riscv64.whl (564.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

backports_zstd-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl (586.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

backports_zstd-1.5.0-cp310-cp310-musllinux_1_2_i686.whl (510.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

backports_zstd-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (482.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

backports_zstd-1.5.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (566.2 kB view details)

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

backports_zstd-1.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (492.3 kB view details)

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

backports_zstd-1.5.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (642.0 kB view details)

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

backports_zstd-1.5.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (582.4 kB view details)

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

backports_zstd-1.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (476.7 kB view details)

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

backports_zstd-1.5.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (507.2 kB view details)

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

backports_zstd-1.5.0-cp310-cp310-macosx_11_0_arm64.whl (363.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

backports_zstd-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl (436.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: backports_zstd-1.5.0.tar.gz
  • Upload date:
  • Size: 998.6 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.5.0.tar.gz
Algorithm Hash digest
SHA256 a5e622a82eb183b4fbe18032755ce0a15fa9a82f2adb9b621620b91247aaedb7
MD5 a285106b38f25d7cfb46b78c7915b1da
BLAKE2b-256 d405480d439b482edf59b786bc19b474d990c61942e372f5de3dc14acac8154d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6172dcdd664ef243e55a35e6b45f1c866767c61043f0ddcd908abd14df662065
MD5 67c3d678837f4ade241e84e3b59ee1fa
BLAKE2b-256 aa31759d077aa680555e17c9d2bb09edf4c3428d895fe5d35a8df67684401b84

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.5.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.5.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.5.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cbb7d79f8e43b6e0e17616961e425b9f8b32d9933e1db69242baa6e21f44a978
MD5 11f96cfc5e84cb87f7f46444a86e830d
BLAKE2b-256 55aaec512a0d14552bbb4e75693f7065434b865956abd045ceb67f0574146241

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 012d88a9ae08f331e1adc03dfbda4ff2ae7f76ea62455975827b215677a11aec
MD5 6c0f67efd54573b688dc197883779f20
BLAKE2b-256 a84dab5dcd6ab9a7ac02ec42c4507211da7dadb9498abb655115c296077e2b8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5232cd2a58c60da4ceb0e09e42dbc579b92dda4a9301a756af0c738223a23487
MD5 81019ae1392c506bf96aed5402302c7c
BLAKE2b-256 c83b68c4fe8a551d3f47ed75ddcf15dc7c777bb9d869fc0e0f5b7cacc9f158f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20796211a623ec6e0061cef4d7cca760e9e0a0a951bb30dc9ba89ed4a3fea5e4
MD5 97ffd62c5cbcd49e9bdab0576e527b5d
BLAKE2b-256 635c741a2923020c45b85cad4dffffcb86dbfa2d4aaed27f18ee793428ef4c24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0ca2d4ac4901eada2cfb86fda692e5d4a1e09485d9f2ec5777dc6cd3154b3b46
MD5 998a06f5afce1e608be4c22f14e7fdf9
BLAKE2b-256 89928e8769e1e3ebec16d39f455e317a0f137a191b1f122853d0377c660666ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 41b23cbd72f503aedcaaaa23d55d2d98d449e5938154d2b3f57832c73b286cee
MD5 ba01d821a973a8765503edd9531c8d59
BLAKE2b-256 2662006a63d5a13a04384b9cd35e35f78944a75c975f5a71c25e81cc766d53d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.5.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.5.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.5.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ac2b3895fc9b1f0b0e71bffa179b48930dc27643b7e4885869afd295e7dfe1e
MD5 c3bec6714a2b1a3384452616092a82bd
BLAKE2b-256 b141d599f31e5152f43397f837c6911bffee8626d6d079bcaafab04d1a8a07ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c077639e99de02a679dca9c6a189f60a76e7d0096977c0ebd070c31de8df57a
MD5 03942d04a7feace8ef061426e8b21da6
BLAKE2b-256 f42e6e43d94a3414d0113439c5e9ae6b04311797cfef5d04dc1d3aa0bcbff057

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 627973d4375a42500a66cc2ea912f6223249a6cdfeb56cc340b0d20b5a3475d0
MD5 a103bc80982fc981b0e416b6b2f42f58
BLAKE2b-256 e1bc146fdb7b0bf39817e1b706e34be46f2cf11d5465668e1912747dd45fd71b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a68ab446d007d34e12f5a812e6f7d1c120a3d15cb5d4e62b7568926a6da6fb7
MD5 e2ee9fa30af2a30b692230ef27f0af0c
BLAKE2b-256 1a5c99fba38e6d57cf238362d4ac568823b1fb75e20f75b58cd062a3da4d9a7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9685586eb67fa2e59eab8027d48e8275ce90e404b6dc737b508f741853ba6cb7
MD5 f325be33c01166c9d28cedd255024921
BLAKE2b-256 5b35294ce0d818455191ee9a0f21d987d6061d4f844ca34ca44a8b1daaaba3ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7b5798b20ffff71ee4620a01f56fe0b50271724b4251db08c90a069446cc4752
MD5 da619a09cc95ecc09bb70b5403cd5cae
BLAKE2b-256 4796d7970dbb2fef34b549b34146090f48f41903cc7268b1ed1c7542eaa1852e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c71dfbeced720326a8917a6edf921c568dc2396228c6432205c6d7e7fe7f3707
MD5 974875490854e35c9e9c0f8df3933bd5
BLAKE2b-256 71c5f759bc87fd77c88f4fdad2d878535fb7e9537c6a05876d206e6690bf33c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.5.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 289.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.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b932834c4d85360f46d1e7fbf3eee1e26ba594e0eb5c3ee1281e89bc1d48d06f
MD5 2a2c8364ed0f99a9b78d166a9d429601
BLAKE2b-256 8e3334152316dd244dcd43d5300ded3cf6e1b46d343e4e92620c23e533fa91df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aff334c7c38b4aea2a899f3138a99c1d58f0686ad7815c74bff506ecf4333296
MD5 e0c634c27f2e46c9c663f85eb9337ce6
BLAKE2b-256 2039c4129a03d268699200dfebe1ccab97c7c332d2794571afb372a62e4ed098

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1277c07ff2d731586aa05aebd946a1b30184620d886a735dd5d5bf94a4a1061e
MD5 d5560d704805ca26f11a446119cd4453
BLAKE2b-256 2f8f855ffcd1ee0fcf44c3fe62e36db8e7362292d450cc7c4b3f43edccbcd37a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 673a1e5fdaa6cb0c7a967eb33066b6dd564871b3498a93e11e2972998047d11f
MD5 42910dd34c1a34449480668ad2741740
BLAKE2b-256 c67c57e985dbd621f0307b8c57cabb258eb976793f2aeaf8a5bc020e15b4a793

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 518b2ef54ce0fee6d29379cfd64ef66e639456f1b18943466e929b19677f135f
MD5 a42cc779f371042f768c28e3a6fd46ec
BLAKE2b-256 be50e7841fd4a65661d527697a0e2dab97295868965ccd4e3e12474472719a60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3aa10e77c0e712d2dfb950910b50591c2fb11f0f1328814e23acc0b4950766df
MD5 e3561e2d9dbad7b88b27d1c6fadc60e9
BLAKE2b-256 ebe3f7b50cf891a10da5f9c412ed4a9c4a772df4d4186d98a41e75c9b462f148

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4fae7825dde4f81c28b4c66b1e997f893e296c3f1668351952b3ed085eb9f8cd
MD5 590db71e8bf8c72d1e6e4ad54639ec6e
BLAKE2b-256 387cb175d4c9ff60f964c8f6dd43211de905227cfde5a41eb5f654df58483025

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2b65f37ddd375114dbf84658e7dd168e10f5a93394940bfefa7fafc2d3234450
MD5 dd280fcccf54d4d193c221414367b92d
BLAKE2b-256 62aed860f9cf21cb59d583a12166353bf71a439538e2b669f4a7736e400ca596

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.5.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.5.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.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5737402c29b2bd5bc661d4cde08aed531ed326f2b59a7ad98dc07650dc99a2c9
MD5 56118c7035431170c505847aa6e75f22
BLAKE2b-256 597578e819272450aec2462f97a1bceb90bde481f9dba435bf9e76d580b4dec4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 96709d27d406008575ef759405169d538040156704b457d8c0ac035127a46b67
MD5 ede4b4d62a17d89412d3cb4e66e89fb5
BLAKE2b-256 f638dd49d3dd27eda9b165ccd63d70538fea016a3e9e42923bbbc1d89fae8a43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b1d0bf16bba86b1071731ced389f184e8de61c1afcafa584244f7f726632f92f
MD5 1f402e836b73aa85ab34ef78922668c3
BLAKE2b-256 aa6cdc2aa1b48296ac6effc3bacb5a3061d40ed74bf73082dfe38eed2ba8362b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76b7314ca9a253171e3e9524960e9e6411997323cf10aecbbc330faa7a90278d
MD5 93ed32391e042c7f8556a90d77ea6efd
BLAKE2b-256 56943af7ce637d148e0b0acb1298b61afe9a934ed425bad9ff05e87afbf6766d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 c8f0967bf8d806b250fb1e905a6b8190e7ae83656d5308989243f84e01fa3774
MD5 11ea157a0cd3ae2992712151379050ab
BLAKE2b-256 41fe87aa9404763bada695d06e5cb9d0575bae033cbf3a2e4e3bd648760178f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 305d2e4ae9a595d0fd9d5bea5a7a2163306c6c4dcc5eec35ecd5008219d4580e
MD5 9e3fb8b742fbe9a5138210b1102d0a4a
BLAKE2b-256 ba42d0393ecc64e2ab6ae1b5ca7edbe26e3fe5196885f15d6cc4bce7254e29cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 93d306300d25e59f1cbe98cda494bf295be03a20e8b2c5602ee5ddc03ded29f2
MD5 206946b333ee5e25699824772275d563
BLAKE2b-256 66e7f98ad1a6a249c27884df9d28cf6ebc3c368e0e3288a741c1d51a572bb3d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 bdbc75d1f54df70b65bcfbc8aa0cac21475f79665bb045960af606dc07b56090
MD5 288c71f2737bdb3948141440669211cb
BLAKE2b-256 dac46a71df2e65033f9b7d8017d77ea2bb572fc2ebc814ea383fdcda4187597a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 c3712300b18f9d07f788b03594b2f34dfad89d77df96938a640c5007522a6b69
MD5 7e151a74cd4dfab16253340e5a0dd6de
BLAKE2b-256 dfdacea04dab3ffb940bde9a59866bde6f2594a7b3ef2948a63fb3898f73d311

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 ef98f632026aa8e6ce05d786977092798efbe78677aa71219f22d31787809c90
MD5 c1a6ba033e1b4659479f6e099e15fa41
BLAKE2b-256 0ec9cdcba1244347500d00567ce2cd6bf04c92d1b0fb6405fb8e13c07715eb46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 c56c11eb3173d540e1fb0216f7ab477cbd3a204eca41f5f329059ee8a5d2ad47
MD5 6b128dc43f1016deffbf1cb98d462bce
BLAKE2b-256 364327ef105ffa2da3d52218d4a7b2e14037974283953b3ee790358af6e9b4df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 02a57ee8598dd863c0b11c7af00042ce6bc045bf6f4249fa4c322c62614ca1fd
MD5 b4e53a1cd7a66ef3d10e5dfbb92ddb91
BLAKE2b-256 c6e6252521e3a847eb200bc0a1d528542d651b9c8dc7953e231c39ed2890d5ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3c0353e66942afbd45518788cfbd1e9e117828ceb390fa50517f46f291850d8e
MD5 5b386851bd42ac617525564020b7c3f2
BLAKE2b-256 11ee1a50acd6446c0d57c4f93ad6ce68e1a631ad920737a6b2d0bbbc47de7f42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e2802899ba4ef1a062ffe4bb1292c5df32011a54b4c3004c54f46ec975f39554
MD5 af7080ac2a7442ece31120bbc0612e95
BLAKE2b-256 ad319c29cd3175892e5ee909f5e8d14707fa07815301ff24b5c697d1cea62a77

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.5.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 289.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.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a8b096e0383a3bcab34f8c97b79e1a52051189d11258bbc2bc1145997a15dd1d
MD5 298d12b2f2c6c239a8daa98042304f90
BLAKE2b-256 f742f544fde4de32687e28c514288ae3c11106ba644e9dd580992cbd704bbb49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f55d70df44f49d599e20033013bc1ae705202735c45d4bca8eb963b225e15fd
MD5 2e332f7a877f54eaa56291ae17f92872
BLAKE2b-256 73fda438ee4fc615016dbe96112b709b6805ee19eb215f46e208c8fbce086d8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 78cbfd061255fef6de5070a54e0f9c00e8aabad5c99dd2ad884a3a7d1acc09ae
MD5 b2c5f200cdc89b6ce6567892eb174b47
BLAKE2b-256 000f39ca1a6e8c5c2dc81da9e06c44d1990cc464f4b16dae214e877afd7adfc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f334dd17ffead361aa9090e40151bd123507ce213a62733121b7145c6711cbde
MD5 97a88c32d134b69b3a9c0a8ca628ee19
BLAKE2b-256 f5a1db5d1aee59da308eadeaa189764a4ec68e98495c309a13dcb8da5718fef1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5e8b8251eec80e67e30ec79dfc5b3b1ada069b9ac48b56b102f3e2c6f8281062
MD5 2f128293f8df49b4b20db14349f1d796
BLAKE2b-256 0ea272777b7e1872228a13b09b0bf77ae6cf626008d462cc2e1a0ae64721fd55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 56fffa80be74cb11ac843333bbdc56e466c87967706886b3efd6b16d83830d90
MD5 4aa3169b37992b306c92de09d9117132
BLAKE2b-256 5df0c95c6e4dd28fc314547782a482839e422283d62c2aaf45d30672109a4a1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2106309071f279b38d3663c55c7fed192733b4f332b50eb3fa707e54bad6967a
MD5 f38a762d5c96ab33bfa7a1354479965f
BLAKE2b-256 76da86c9a2ea384885b60638b3e47113198449568d0e36ef3834d1f969623092

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6cd7f6c33afd89354f74469e315e72754e3040f91f7b685061e225d9e36e3e8e
MD5 4d1dc01a22243683457b11a0c97d70ab
BLAKE2b-256 4d20ee21e4e791e31f38f7a70b3961eb64b350d9be802a335e7a04c02b41b197

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.5.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.5.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.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb73c22444617bc5a3abf32dd27b3f2085898cfe3b95e6855300e9189898a3bd
MD5 3ab057ce86c5515fd685e59ae162ffe4
BLAKE2b-256 e44b2cecd4d6679f175f28ae02022bd2050ff4023e38902fae104dbe2e231911

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7c7474b291e264c9609358d3875cf539623f7a65339c2b533020992b1a4c095b
MD5 642200676a6cd08c9ca6e1fc3a90a08b
BLAKE2b-256 d3e9ee93a66cd28cb3ad7f3c04d1105325a5428671b18bd41ba9ed8b43bc44cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0379c66510681a6b2780d3f3ef2cff54d01204b52448d64bde1855d40f856a04
MD5 c4eb9a65a312a3444905c1055c51015d
BLAKE2b-256 962c65a66976a761b5b62eacbaed5ed418c694b24b5c480399315d799751de62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c737c1cb4a10c2d0f6cba9a347522858094f0a737b4558c67a777bcaa4a795cd
MD5 75be2ce181d982422a731ce7e7372792
BLAKE2b-256 6a8f8dc4b5736dca218cbca9609549a8f6dc202990abdb49afdc6112442f5360

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ab3430ab4d4ac3fb1bc1e4174d137731e51363b6abd5e51a1599690fe9c7d61d
MD5 3e5f90d0df272c082c90f9ad452047dd
BLAKE2b-256 3f039d13840d206dec1c4698c803f61c58379b3578cb9dc6140ba5fa4ce2f31d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccffc0a1974ecc2cc42afa4c15f56d036a4b2bae0abc46e6ba9b3358d9b1c037
MD5 5529534543bb0d25976c475bd7bd7596
BLAKE2b-256 d0e3a58a3eb8fc54d4e3e4f684ed7b1f688da02e5bda5ae5e2809e94cf2ead2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1858cacdb3e50105a1b60acdc3dd5b18650077d12dce243e19d5c88e8172bd71
MD5 3e8c591fc945ca02afd55a819a025b98
BLAKE2b-256 247129ed213344f8f62b7520745d7df3752d88db456aff9d8b706bdf5eb99a3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 264a66137555bb4648f7e64cfc514d820758072684f373269fcdd2e8d4a90306
MD5 0f5b1458c5a7755fd980951cc753b425
BLAKE2b-256 e8e724e60da7cc89b9ed1c5b474678e316dd0ddfe7cd1de39b23d04452ca5946

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e7c0372fa036751109604c70a8c87e59faaacc195d519c8cb9e0e527ee2b5478
MD5 4ba14c84774abf0e85575f38783d528c
BLAKE2b-256 1d1bdf94ad1cb79705d717f7e1063da642c538a6d7ce6443c8e60355fa507ea4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.5.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 289.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.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9f4fe3fd82c8c6e8a9fdc5c71f92f9fe2442d02e7f59fddef25a955e189e3f38
MD5 d9e93dcc99d8509afd7da5eb968fc77d
BLAKE2b-256 f1ad6cd1de5cd858ac653833098f13a4643a4c9db484072350d3dbf299cc46f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4080bb9c8a51bb2bf8caf8018d78278cd49eb924cb06a54f56a411095e2ac912
MD5 944f99fd95ff86754ca1e06dacc95916
BLAKE2b-256 675c10df0444db05f9276b286d230a3d6948ad47c593fc22925b8fe551d34b26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c01d377c1489cb2230bf6a9ff01c73c42863cc96ee648c49923d4f6d4ea4e2d5
MD5 fa34688aba4f00928357c6699865df68
BLAKE2b-256 8fa46e319fa7fa5851c3ca9701cbded9522c16018432a01a33a95cc0fccb6b4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2ffde637b6d0082f1c3356657002469cf199c7c12d50d9822a55b13425c778d3
MD5 44b8f018812124ae5dd89ae39a37a486
BLAKE2b-256 bc3273d2b8f572960307406b084bb8932f4ebd9fcedb05d1502e04fecf25970a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0fab15e6895bef621041dd82d6306ffa24889257dd902c4b98b88e4260b3465d
MD5 6467a8381fd8575b5adb6d0daf492d61
BLAKE2b-256 843b95342baf0e301b7d06c6862389f8520a9d71f073a6c1a5b86182e7d89148

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9410bcbcd3afd787a15a276d68f954d1703788c780faa421183a61d39da8b862
MD5 851862f9e812a94ec3c75f49cf5c8d10
BLAKE2b-256 77362826f9f04b6c91d5f707f49188ac6f5ec7487b36d73caedfa20db3307826

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 572c76832e9a24da4084befa52c23f4c03fede2aa250ae6250cbc5a11b980f69
MD5 528825cf2aef4083d70d28e2cc90814c
BLAKE2b-256 127bee7368c4ad8f5e00b3fd84fc566fb7714aa766c5672500793990e19efa00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 663128370bbc2ebcc436b8977bc434a7bf29919d92d91fee05ed6fb0fa807646
MD5 01fd29b37a10ac5acd40c44cfdbf8fea
BLAKE2b-256 c0c7c5e7824c17abc87dbb24c7c90dc43054d701533cf04d3531cb9b7105cdac

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.5.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.5.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.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 775ad82d268923639bc924013fc61561df376c148506b241f0f80718b5bb3a2f
MD5 d485c85becfd5d817956ba777ee696e5
BLAKE2b-256 de5f02366ddae6e008d53df71605e4e3ca8dcea5d1dfcba29040b46883a23127

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ea969758af743000d822fc3a69dc9de059bbbb8d07d2f13e06ff49ac63cce74f
MD5 29484c85581427fb45f222bb8d79d143
BLAKE2b-256 45b9dc748a0e7d21ce2228241f6e8af96d297c80ab69c4c49429309b8fa3beb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cb89f554abcebcb2c487024e63be8059083775c5fd351fec0cc2dc3e9f528714
MD5 d714eb5f7c9b60cbd481925ccdee4601
BLAKE2b-256 4d104c1693cb4e129585a6e4cb565106cad7347e61c43c8375b9e9cadb00eb06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6bb2f2d2c07358edeaa251cf804b993e9f0d5d93af8a7ea2414d80ff3c105e95
MD5 474970730acfa93006d79b0cc48ca96c
BLAKE2b-256 d8ecb64409f0cf56fb65181d6f5d9130058f19d5c3c9f8c581a5e2bd62642630

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2c77c0d4c330afd26d2a98f3d689ab922ec3f046014a1614ddcaad437666ac05
MD5 34eb1c6387296797e41589f9604f2ce0
BLAKE2b-256 63a54fae78734dbefcb4b5386137c807e2107c4bc94e85c0d9eaae79206dde84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 204f00d62e95aab987c7c019452b2373bdefb17252443765f2ede7f15b6e669a
MD5 4737497c8960d1724ce96dcd87a2b799
BLAKE2b-256 cde5bf778667fff6598dbd0791745123ed964aee94753ae8e4e92aa1e07417b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fbaa5502617dc4f04327c7a2951f0fcdca7aaef93ddf32c15dc8b620208174fa
MD5 86d67d3f4bb14fa16d8941da9abd5dcc
BLAKE2b-256 26bc083c0ebee316f4863ed288c4a5eaa1e98be115e82deb8855da8bab1c7701

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 0c473387025e233d123f401d09a17a57e0b9af2ec2423aae7f50f1c806887cb3
MD5 ffc1a6a233378860eda2ca5601c3de96
BLAKE2b-256 7ef71cfc87f0171268ffb3eb479f0b8ef936164cbb6bddd1fbf1457e1ac8aecb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c1ea900765329a515020e4e66c65a826657cc1f110770cac3f71ec01b43f2d25
MD5 4875351a5aed201613105b397bede203
BLAKE2b-256 180e579f193d023c099ecaf560aae72701bfa6bacc5486cf57f91236b9c1404e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.5.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 289.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.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 11c694c9eef69c19a52df94466d4fd5c8b1bdfbaad350e95adc883b40d8b3be2
MD5 c4f8574a6b249af726fce97d6ac1857c
BLAKE2b-256 cdff28c94189774b62c26ddf65ee54ec3591f6f0217d9545d20854f8600541b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0075195c79c0508bc7313a3402b187bd9d27d4f9a376e8e2caac0fc2baeacbdf
MD5 27ab7e8e4ddaefcbbd8204ecee974d1b
BLAKE2b-256 1a03547b4e0abf8e1c2f29314e1e3ed7a3e2054b22560b2bad843423fbb99140

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8b4e17632759a45a7d0c4cf31968d8d033eefbe1a3d81d8aaf519558371c3359
MD5 17f0f62494e809837d9e3590ec53793c
BLAKE2b-256 95337cf01fb8b4cff1ea6c7fee19d64de8a1a8dec7b18703af2aca79c8f87864

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 97f4d29e99538b11313cbc7a6d9b3c2ce0d69fdc497699ab74953d0d5949ab88
MD5 2552af54783bb0e43a993ca4ae016e5d
BLAKE2b-256 559b16573be05e8fe54cb356d9aa9aeb84d1e14fd49fe23ea7f261027e2e7f25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7088a75f96d8f6b0d3523ec3a99d1472ce03c3524b2f7b485b80e115ef20055f
MD5 e20ad4a2f32051d790ddb06b2f57f645
BLAKE2b-256 f640436ee1aa915fa310d0e83c361f25757960f96ef798f532948351637125fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 624825b9c290e6089cd9955d88da04b085528fe213adf3e4e8be5c0fffef6c65
MD5 62f0bef58372817411b5c968b53f85e6
BLAKE2b-256 6dedfc7144651682744b32de1e624bcad6d0bb72d6359e37a5d9e980f3d5a45b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7de15f3871d21d6e761c5a309618b069fee5f225e64e4406956ac0209dc6917
MD5 97dcc2ec9374472240e4c0f3ee572602
BLAKE2b-256 9ff8bf880d87cfb71ad9753142d2ad0802015ee4a343b8c080ea6f0eb6b05bfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4cf8355cdfa7a2cba9c51655d56e6be39c751799286b142640be30fef2301a70
MD5 fc52b7e5f59526a8daad454c834d54f6
BLAKE2b-256 9eec7222e9e8ca899cf9d538468b0fb6386da93dae94f6e60625a7ef99281672

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.5.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.5.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.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b82506a4da0977754335c727752411bbba1fe476a8662d96161218f275fba859
MD5 b7466f16b930195ab8ada3480321d49c
BLAKE2b-256 9ead9070e691597657bd3b983d8c8ba46bc6ee4d394608e7be969f2060f16899

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ebfbf7307d618d68deef905d3d6655339d4ce187e176023bff8fbd44ec1e20d0
MD5 e62c91f05ded4b704c57ea6706a32f27
BLAKE2b-256 e3aa3c2c28492656af005ed9602beab4c20813346b53257413ae57bf88adbd41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5e24ee1e1bbb4549a2ad63695b4a5776596aa171fdaf7c1e178e61e351faf0a9
MD5 5bdcfcca436728d4ab392fb2a1cd9004
BLAKE2b-256 114aee0c81e24789781fcc8399817e5c82121001293dbbaf17629833ff0d34e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9526d69c8fbef03e04d74b33946e23f806399cb49e51550bb21d757fb2ce869
MD5 aa63982bbf007f0368f68b5417e89228
BLAKE2b-256 edcb4e0063bf90d6fd17329ff271e131758d5d96a73061b6d45577a8be6ebf42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 73ff4ceb7e28538455e0a44f53e05a731bbdb9bfe2cab4a1637dd1f0093732e3
MD5 f38a51e8a8ee4bc58ca3a2a7d3d64b05
BLAKE2b-256 c161b461cf3620ee3a55e20d885ef61c5ab56a3745ccc0d422f74968337777ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e51edd66db6855bee020c951ca5c2e816777bfe77f87742fbbfae9a32d482fec
MD5 ab9162ced8d55209e1a40e25c4bbf675
BLAKE2b-256 e28785bc9b98bd0bbbe76af0aa19d423eb93906467110e4cdd4741fd8d26def5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09045a00d9dad12dab49e029b26c197637b882cf4adc737a373404ba2aaabbca
MD5 b90d778be90b627e7944eaf31436d2e5
BLAKE2b-256 ea6ebc24b45e16381272db45bfe627c1762600fc5fbcd39cef3723c89425129e

See more details on using hashes here.

Provenance

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