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.2.0.tar.gz (997.3 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.2.0-pp311-pypy311_pp73-win_amd64.whl (300.0 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-1.2.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (414.1 kB view details)

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

backports_zstd-1.2.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (394.1 kB view details)

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

backports_zstd-1.2.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (420.6 kB view details)

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

backports_zstd-1.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (339.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-1.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (409.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-1.2.0-pp310-pypy310_pp73-win_amd64.whl (300.0 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-1.2.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (414.1 kB view details)

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

backports_zstd-1.2.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (394.1 kB view details)

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

backports_zstd-1.2.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (420.6 kB view details)

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

backports_zstd-1.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (339.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-1.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (410.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-1.2.0-cp313-cp313t-win_arm64.whl (289.6 kB view details)

Uploaded CPython 3.13tWindows ARM64

backports_zstd-1.2.0-cp313-cp313t-win_amd64.whl (315.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

backports_zstd-1.2.0-cp313-cp313t-win32.whl (289.7 kB view details)

Uploaded CPython 3.13tWindows x86

backports_zstd-1.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (499.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

backports_zstd-1.2.0-cp313-cp313t-musllinux_1_2_s390x.whl (630.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

backports_zstd-1.2.0-cp313-cp313t-musllinux_1_2_riscv64.whl (568.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

backports_zstd-1.2.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (585.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

backports_zstd-1.2.0-cp313-cp313t-musllinux_1_2_i686.whl (511.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

backports_zstd-1.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (482.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

backports_zstd-1.2.0-cp313-cp313t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (570.7 kB view details)

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

backports_zstd-1.2.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (495.1 kB view details)

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

backports_zstd-1.2.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (640.2 kB view details)

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

backports_zstd-1.2.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.2 kB view details)

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

backports_zstd-1.2.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.8 kB view details)

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

backports_zstd-1.2.0-cp313-cp313t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (507.9 kB view details)

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

backports_zstd-1.2.0-cp313-cp313t-macosx_11_0_arm64.whl (362.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

backports_zstd-1.2.0-cp313-cp313t-macosx_10_13_x86_64.whl (436.4 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

backports_zstd-1.2.0-cp313-cp313-win_arm64.whl (288.9 kB view details)

Uploaded CPython 3.13Windows ARM64

backports_zstd-1.2.0-cp313-cp313-win_amd64.whl (313.9 kB view details)

Uploaded CPython 3.13Windows x86-64

backports_zstd-1.2.0-cp313-cp313-win32.whl (288.7 kB view details)

Uploaded CPython 3.13Windows x86

backports_zstd-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (495.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

backports_zstd-1.2.0-cp313-cp313-musllinux_1_2_riscv64.whl (564.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

backports_zstd-1.2.0-cp313-cp313-musllinux_1_2_i686.whl (509.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

backports_zstd-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (481.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

backports_zstd-1.2.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (566.4 kB view details)

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

backports_zstd-1.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (491.1 kB view details)

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

backports_zstd-1.2.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (642.5 kB view details)

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

backports_zstd-1.2.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.6 kB view details)

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

backports_zstd-1.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (476.1 kB view details)

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

backports_zstd-1.2.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (505.9 kB view details)

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

backports_zstd-1.2.0-cp313-cp313-macosx_11_0_arm64.whl (362.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

backports_zstd-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl (435.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

backports_zstd-1.2.0-cp312-cp312-win_arm64.whl (289.2 kB view details)

Uploaded CPython 3.12Windows ARM64

backports_zstd-1.2.0-cp312-cp312-win_amd64.whl (314.1 kB view details)

Uploaded CPython 3.12Windows x86-64

backports_zstd-1.2.0-cp312-cp312-win32.whl (289.1 kB view details)

Uploaded CPython 3.12Windows x86

backports_zstd-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (498.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

backports_zstd-1.2.0-cp312-cp312-musllinux_1_2_s390x.whl (631.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

backports_zstd-1.2.0-cp312-cp312-musllinux_1_2_riscv64.whl (566.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

backports_zstd-1.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl (586.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

backports_zstd-1.2.0-cp312-cp312-musllinux_1_2_i686.whl (510.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

backports_zstd-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (482.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

backports_zstd-1.2.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (568.9 kB view details)

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

backports_zstd-1.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (494.4 kB view details)

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

backports_zstd-1.2.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (640.7 kB view details)

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

backports_zstd-1.2.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.9 kB view details)

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

backports_zstd-1.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (476.5 kB view details)

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

backports_zstd-1.2.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.7 kB view details)

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

backports_zstd-1.2.0-cp312-cp312-macosx_11_0_arm64.whl (362.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

backports_zstd-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl (436.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

backports_zstd-1.2.0-cp311-cp311-win_arm64.whl (289.1 kB view details)

Uploaded CPython 3.11Windows ARM64

backports_zstd-1.2.0-cp311-cp311-win_amd64.whl (313.9 kB view details)

Uploaded CPython 3.11Windows x86-64

backports_zstd-1.2.0-cp311-cp311-win32.whl (288.9 kB view details)

Uploaded CPython 3.11Windows x86

backports_zstd-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (495.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

backports_zstd-1.2.0-cp311-cp311-musllinux_1_2_riscv64.whl (563.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

backports_zstd-1.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl (585.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

backports_zstd-1.2.0-cp311-cp311-musllinux_1_2_i686.whl (509.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

backports_zstd-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (481.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

backports_zstd-1.2.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.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (491.4 kB view details)

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

backports_zstd-1.2.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (641.2 kB view details)

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

backports_zstd-1.2.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.5 kB view details)

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

backports_zstd-1.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.8 kB view details)

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

backports_zstd-1.2.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.2 kB view details)

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

backports_zstd-1.2.0-cp311-cp311-macosx_11_0_arm64.whl (362.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

backports_zstd-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl (435.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

backports_zstd-1.2.0-cp310-cp310-win_arm64.whl (289.0 kB view details)

Uploaded CPython 3.10Windows ARM64

backports_zstd-1.2.0-cp310-cp310-win_amd64.whl (313.8 kB view details)

Uploaded CPython 3.10Windows x86-64

backports_zstd-1.2.0-cp310-cp310-win32.whl (288.8 kB view details)

Uploaded CPython 3.10Windows x86

backports_zstd-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (495.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

backports_zstd-1.2.0-cp310-cp310-musllinux_1_2_s390x.whl (631.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

backports_zstd-1.2.0-cp310-cp310-musllinux_1_2_riscv64.whl (563.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

backports_zstd-1.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl (585.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

backports_zstd-1.2.0-cp310-cp310-musllinux_1_2_i686.whl (509.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

backports_zstd-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (481.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

backports_zstd-1.2.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.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (491.3 kB view details)

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

backports_zstd-1.2.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (641.1 kB view details)

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

backports_zstd-1.2.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.5 kB view details)

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

backports_zstd-1.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.8 kB view details)

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

backports_zstd-1.2.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.2 kB view details)

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

backports_zstd-1.2.0-cp310-cp310-macosx_11_0_arm64.whl (362.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

backports_zstd-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl (435.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

backports_zstd-1.2.0-cp39-cp39-win_arm64.whl (289.0 kB view details)

Uploaded CPython 3.9Windows ARM64

backports_zstd-1.2.0-cp39-cp39-win_amd64.whl (313.8 kB view details)

Uploaded CPython 3.9Windows x86-64

backports_zstd-1.2.0-cp39-cp39-win32.whl (288.9 kB view details)

Uploaded CPython 3.9Windows x86

backports_zstd-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (495.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

backports_zstd-1.2.0-cp39-cp39-musllinux_1_2_s390x.whl (631.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

backports_zstd-1.2.0-cp39-cp39-musllinux_1_2_riscv64.whl (563.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

backports_zstd-1.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl (586.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

backports_zstd-1.2.0-cp39-cp39-musllinux_1_2_i686.whl (509.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

backports_zstd-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (482.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

backports_zstd-1.2.0-cp39-cp39-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (565.4 kB view details)

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

backports_zstd-1.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (491.4 kB view details)

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

backports_zstd-1.2.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (641.3 kB view details)

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

backports_zstd-1.2.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.6 kB view details)

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

backports_zstd-1.2.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (476.0 kB view details)

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

backports_zstd-1.2.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.3 kB view details)

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

backports_zstd-1.2.0-cp39-cp39-macosx_11_0_arm64.whl (362.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

backports_zstd-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl (436.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for backports_zstd-1.2.0.tar.gz
Algorithm Hash digest
SHA256 6c3fc19342db750b52fde793e4440a93575761b1493bb4a1d3b26033d2bd3452
MD5 f78ff5bf615cf8198dadecee121b66ee
BLAKE2b-256 f4d8e8426a2abd7bfdafffcc1be07a23890314f199928515937c8ee7e3537157

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f00066de6ffd72c653b43afb9aaa36969fd0e2c91f66adb45a11f73e6423263a
MD5 159ca0a6c3e22ae3dd8f6b1189d1d303
BLAKE2b-256 71add5e8a3b28150e4f310999ef26db1e6b5f3bbb899c07d88ebd910954fcaf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.2.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.2.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.2.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89afe7d6e86bedbf2bac083beb096732a1e92025a5efa9c972941a6140994485
MD5 2db9eb47546f843c40df612baaa98a4c
BLAKE2b-256 50c2ba7bcfe28dc3f8e8848419757883c8a0c7a4263dcd5d3988dd7f49818ca8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72bc2b03590d66d8706e4717da25cc6c192f5a6bfc3f6148f671f79e73afd4e8
MD5 89d8247d54d05e957ba7d89960b083b0
BLAKE2b-256 502eca206b678cdbd2eca56aa2ce49996f6d6cd21db840efa6e2e6f73d4cb7db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e4524beed644c4074ff017e96afc91c5e98064f40680fa859bddee5974641805
MD5 7a8aa416972b637c4197b0c45c72e542
BLAKE2b-256 2fe6abb1b8e6e5c9dfb8cbf05669745de81273b46fef5bafee00fb1698c75ce8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e126bd32c97b1f4717d30530a3762c1f9a85d5d629fdc2ad210e6427fd6849c
MD5 e0e94d327e96bd09b86c27f2ca639997
BLAKE2b-256 b7cec91b6a4681eb8f13c7919ce551d4b5364e9fd6f07e770e4e01ca2c0b1f92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1c3a1748eaac8fd1c862d3e16c6beb023f118a82d7230a32d33f6ce65752a2d6
MD5 e37499795c1dc19a645122c0ee0294f1
BLAKE2b-256 e5b12b7b0e1dcd165cf0e0fc792b74138489bfb90d66d7ded86f7f7e91f6764c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5f7e28d44e322c16aaf8973ce3c062105b6d88fe2b4f4611b40e410176a4fd40
MD5 67fa5370dfe5212885852aa9dcaad15a
BLAKE2b-256 466826c9802339a885f567f1c7bbfa5d5b786545e5bb754ba385f81dd6d2ccc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.2.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.2.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.2.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb3b0e175170422b1d095709356cb688b664d381f3dba424ae5107990ca913ee
MD5 9a97902808265ba3d61b6b94a3b6ac24
BLAKE2b-256 36d61e41a5469606fbe100b4841f03c42275a1b114fa02921cbdedb0aadeaa00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 35b8390fde5644a067a66cbd6f1b1293f48264f7bd867f0148b09d4f206005bf
MD5 a8b9e3dcd282ad534a6f4cfb348e38a3
BLAKE2b-256 87e3ee54f99fda973cf18dcb5ef7fb481449b1e5770af4f449ac06af77c995d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5d8014aeaec1f47f3209bd5e9e29282fcafa7b9076f89cc342a5dab3f298fdec
MD5 7e40194a7a36a492193a5dc924e7fb30
BLAKE2b-256 5f2136a2a17f5cd360ddd89bc6d24d2cfb1f6b1e4051fe70da9e172697763d7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d9e4d77f03524b59bc2d8d9636e5d808e50ef0d20c56f0ab2ab8ee00b6a367a
MD5 4b71be237aef735106304990c31bb1dc
BLAKE2b-256 cb7a1d2390341fb97e9fa9c3242dce6825646bd6f47d96ca862bf070dce0c943

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f94f434e2265c067a7e6e2ea50f93e709421f2c9e4a2458a80284065a79caefd
MD5 3aefc01f2d239beacae00dd4d0f6efd5
BLAKE2b-256 4a030be0f44bfd5a77b6dc476eae791bb2847f786bef717aab510b0764aba2f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 a884be79cd0897436e1e06566d0b6bcad2360afca8e8e27fb19422ba0cca4d7a
MD5 e64c9337c5551ca494f9974e8f4afba3
BLAKE2b-256 e433a519b4da2015069fb36cded5181ff078ecceb852861b675e2c79547ad10d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 2b7b83331878041a259ec0b384bee7dbfd486b2a2579cd730aca718897d045d7
MD5 6c2f3da3a4d2cb4f9c193151e8b641c5
BLAKE2b-256 d6ae68e5bca7f9990c45c7b1940deccfa4a106c956c5ddd63393332372dad131

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 6c2bc4f7154d5c166912c5b7ee6cbb3a921726d1c2cee7c0f1bfaae736f7c250
MD5 4a0a5d7d0989099ff504a7f08f534bbc
BLAKE2b-256 b02ee10d1b10f087094a108f542b91b44efe928800b6ecd8f1619c9967b6da5b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d541c0c1992ac25bfd836a1e77cf0e70f18d5505aeeebc56c2cf06ffbc209f5
MD5 df2c4fdab05450ad17263d039e5e26e7
BLAKE2b-256 78ff87fc0e498e6c4ad475da178a4e4c81fbfaf19b043ca586a63068ad704f49

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8f5ba6a97712794ab9c284382a5faefd31ebcb84fa55cb4621e948264dbc6b97
MD5 73f37e2c3caae42ff94e6a18da35b634
BLAKE2b-256 4ab5e2f2f68c204743a9060e50f6910fd7ae1b484250460fa85e843292e8e8d8

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-1.2.0-cp313-cp313t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 93332bf758954da70b1803ccc73697c7cdec475e4ec04286ff8c568f3786c398
MD5 5c777dc662cf8a75d5ffcd82e07d89b9
BLAKE2b-256 e117e9b29c3d7c4d13e046876fb81b7564a85463d6ab65c10f7fc42a7c658042

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e3ddf78b1b58291616df13844d5a0e6027b0ce299b15d7d3be2a93b974b7b5f6
MD5 8870e3be2de3d03f76923ae00baeef60
BLAKE2b-256 22291e9a135af0141d0e0eabb21491f0f058e73ddb4de356ca174406d60d1dd6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9af83bbd56f785dffc9a669918e7e7b7f96b0e32fd8877ff90e445ca531463ae
MD5 8a8fc51f3d983037ca24dece872cb285
BLAKE2b-256 cc2fcebac7f4dc977da1dfbef4004dae6ae12e31f6978db34af530425568dea7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e38b22cb32bd9010ad65c0b75a2934448adfdd6bba4387b0f9bacce11e051716
MD5 b944a271d8d8ff8782aae7827145b5b2
BLAKE2b-256 85e3476a8b3ac1d7d1b41442bf634603d0beb392d9df2a1439f9543312b67bc3

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-1.2.0-cp313-cp313t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7a0957bc3eb84b4a537388c7a62ed055d61c2246c11babf4cbaafb3b5eda0a9c
MD5 c9dbea8ac359ff6afcd3a61cac2a951b
BLAKE2b-256 45a78f44bbd2a78855680c24e7f90cad69c0c70650f345c4cf13bc7a6dd56231

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f499ec4944c223814be97627d0f1b65c2474ba981e1f21ec8b541f2dff5f960
MD5 53f667b0cd32b421b10bef60cada8509
BLAKE2b-256 d664ebd64f84875f7feb83005bfc3e7352700d26f5396e7e5e494681af18fe18

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c56bdb8e57563d726ce46225011801ff748018cbeff5175576f8a46868e0f706
MD5 fd8579d3c38a6a58467f8d9c968aac06
BLAKE2b-256 f571eb6e7019db30622d2a31faa0e608fc3dc29e336b4a855bd5b0e78ac0943e

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 00066e7c3df700fe0df66aa197dcbd3d691d55c16f6179c3acd87a6ca22e7993
MD5 d6be137db8e2c179d88c048e26db0a19
BLAKE2b-256 43d58615151ea4bcf5d2dca0755bfa7cad97b7cb8dbd1c9c2e1da57081f1d8a6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7b12f415fe62f1e9f7196ce9eaedc699547c38cc263e64b6939b610b2a29a200
MD5 932dba03089030b0fbcdbd10b1f31a04
BLAKE2b-256 0fb0089867ef455f6311caa9224e68020cabcbfc3f8759cfd19931b06ba7bb8d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9a0e5f6aebd1ff3c75b26d3e3ac3140996b9f0883b95847fad57992be06fe5d2
MD5 8c48a43f60f4ed4c2640897a525e632a
BLAKE2b-256 42629233d99c1be673188afde322aecc467653023185077064dd3eac18678e22

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c3508074a30e3309bcc1bfdfe6cbd6bd3d64567788d3c6e15b1594e63bef276
MD5 2449de6460cabe6a477693816908b203
BLAKE2b-256 9d27bba33f68cfc57a2885bbd1a1ffc9405cb461b12db5083ca63b15074bfa6d

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 21c68b9d358f1062c5c8baad946e306b54380dcbe2b12d00fdebc42533b5a499
MD5 0a07f77b7a395712f78b046db332180f
BLAKE2b-256 4f65285bccc9fddb1b1d7fa379b42407f3e88359db05a6955fbe02ef4d5ed6ce

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c09f5e985142fc04581c12e635dfd8cdc64b2d595479c1213f0b4db7ee37e3cb
MD5 3a44568260d4e60433cb48faa6cfd61b
BLAKE2b-256 160dcf6b22e4ca8cfa850061baa89664437b2da65698b2a8a02eb67de9d6b69e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b80b715170fc590d464d3342757978702ed4b6b41a3b3a0a5dbb46a89f4ccebe
MD5 fe6e80d9eba0645abe89fd473de4906e
BLAKE2b-256 6ef3bfe0c470e2cfd0bbc274ca484e7a061f2d505c28df2479c52ed1dcce4fea

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0724fb2958eb2ccc100c9f49315d856a88b5deb985c62953876a78ecb46027ba
MD5 744c405452d73299534eb120baa527ee
BLAKE2b-256 c6da27ef9e6a169808fc6777fb58fb55991bdc9ec22eee1aaecaf076be91986b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49c675121210ee23ea9c9b28ad15822e1b0f9182df733f0e1a10a5385f628701
MD5 931ff68521361929fc3092f912f8c0ec
BLAKE2b-256 cb3a1469312ce7b1c6d98c788b500df01d61468d17bfd58df21266a7160112fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5c170f1329e90614f2d51f6f4622f6f775f51b92b7bc7801fa093b97db6cfc95
MD5 9a871b97aca6716947095123eb81718e
BLAKE2b-256 f5ec2ea033ceeca0808d830c3fb1d8ced1b6d2e5c4540ed8bdf66e0ec99180af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d3d0d54ef711ea5ffa4e2eebfb70784295eb517bd7ac64545a142ad35c5b02ba
MD5 987ec53eadf8798ed1c90fbaeec5b19b
BLAKE2b-256 407a11c709c72abeef82c5ef752718c10a3fde0fba8258c069d717de33d366f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 59ddb84b8bd46a4a297cdf92601aaa9f59881c59f4a402a021173d6bb8bc367a
MD5 f5ccb40197a7f25ff683375534de10d3
BLAKE2b-256 13fcf7a86785fde290b3280adeb81c577a96323d4b661b9befa0d990aaa67a86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 afb95bc88d7623eeda2c0c8fe0388ac8838fa5a09ddbd7dfa72b283de392024b
MD5 d1cb6234e282346187b106a0e3b2d714
BLAKE2b-256 c02c5c4f9a54c7c708f38cdb0670804d62237e9cacd1a6ff567f8c5fb8ef5d1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3f2a3f898dd1eaba5c8f0ea0e1bd23d993ed86ea7d4c12bf7a0743158d123d6
MD5 8b962f15c05c4730abacef7be2510929
BLAKE2b-256 c0428161164fb26ac1a656f5fb5e3aa3aa9dcf4d06f6d9553fc596fa6f0ae3ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b72e343b1b2927fc047054450de8738bc64c268e93fabc8228d963690eaf348e
MD5 051314b7c0e27c42eeee49171e5da725
BLAKE2b-256 2526450b23bad6035f0f3dc8e1cf3729e31a10ce1821a7b6d3bf8555ba818a46

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.2.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.2.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.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e7340a7fb7bac7607382554b138ae8dbffda0b8af72ce5c639fb86b49a3b2e4
MD5 f459bbdb6f29a902b79abb62f5cce748
BLAKE2b-256 2c74a7ae8e421ccb779130d64745d3191daf6da02f37bf7cf099dc10d688d14e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5642ae3832fb74817bdabc0d8b8877b109537c3f9ceeb54a6cd855aa0afc3bd9
MD5 8e0fa44d443c122c0f22323a7204e6e3
BLAKE2b-256 81e2072fdf5bff7274788b49491a4d039bf0fe2f2f07a9975751d8b70fc14ac6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0f032452d783876c5f4d81907e42fc6fbe812a9a712c360b497968ea7109bb17
MD5 fa52d9d548a45fe1d3ebb308c5037afa
BLAKE2b-256 17d5fca7eb6e5a12e390ea4437bc6705e18efd70c9966127c3c2fec8188654f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9478c04e285da26ce1198d5ec1e43905531049c9e0f74169a39df5876f44643e
MD5 027bb9036590aeda4918abffabb6f822
BLAKE2b-256 4408bda420a2d13be0d6aa8323b735207de46bb01c08575e3a6810e01a20501f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9ef28be8bfebf5169cde28f36ebd146a0305569c91e836aed3a3aa79b7bbc58b
MD5 1fd48a01db6c232218dac281c34df241
BLAKE2b-256 5ce2464e87930aa771da08634846300c13355f7ae07a476c8a30f75631fd1689

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f6520e555c2b597863b97ecb90ad21857bf044119f643130c29110b55f67c1a
MD5 2aa265ef157227861be5f78acaba0d2c
BLAKE2b-256 297db126e05650103f269282e5271a0960e30ac4ce9f192e3ae98e303325011b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1db671ac69df7cd88057c85a7bc614b94afd74a48faacd1576ad91dd18008f6a
MD5 d89bbb82c315fd36d49b64807f3bba83
BLAKE2b-256 6e6cdd602f484f22d8df9ed71859735dc86e094e90b7d8f51e51d48808f3571e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cd6326f1562435677ab2bf607a44c96bb2a48beb0e14accff45e8c9f0931e9c1
MD5 ba1bb2c093f1f961d9343fd725b95076
BLAKE2b-256 44e3133652d59a6731f9180a107812c9d52a2c72be2d80c2fd4f874669592a0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4667b30ea5e9f8b505b2042a40c5115660151987ca748b4be07facc757212ff9
MD5 b27efd43b8041b7e46c7035599406137
BLAKE2b-256 e1e477fc5813ea35906ac1b71cd284e20c5a6f808f138e2e6a13e9586cd61d1a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for backports_zstd-1.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e8bedc2372dae260397a99844420e16bb886912d685058d52e1f3533164f67a5
MD5 4d196eb91b060db92b242a5e85c3ec4d
BLAKE2b-256 fd99ca71a403c79ec4bc419b71cee532de6545af1a0d8e61d0a2b8d70a034e0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d57ce6d62dfb28bd37ad5523678752a5516ec68595fd35559f6c2878edd4de0
MD5 07663e011488857364b92ebe42877827
BLAKE2b-256 d78e9dec5a74249b3af4ea4fd4a5dfb5d70167ea82f96592b3b4e7d340ccfff0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d5b3518f82c518a09067dab4ed1bd79ca542a2c248f7f9418262dc2c4a06ccdb
MD5 d137cbaa8af33390a25869c98f246334
BLAKE2b-256 2d8dc81ed0da565f735e8a8f0c3b8c633f9e16bcfdb82ca5cb4d029dac0f1361

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 464d5fea68f5b03feabea22a4db4f39622db4ff89dab2df259b3c8665f1f676b
MD5 d745a578484130b44950603d6392190e
BLAKE2b-256 f47cecfb1d8ba18e2c9090898f12b6ea83a9dd59e735021a2c564996c4599024

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 dd63ed6c7139cef92b1073be892e92631aa468332570f7230089e93a9449f551
MD5 8cc8128b6b5258c2892b89e4ea69174d
BLAKE2b-256 3fbf248692d5e0960a50eebc982e4e2cbbb3ac0f6200ad81d222d4c01ddd500d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4687dac0a3c5a4c30fbd871ee3be666822f1eb902a7a68ce0d1379f190917850
MD5 a2f4f9b4641c31cf101c158214dac14b
BLAKE2b-256 75617440f4c72324c1c455498581faeadc1711cc6728f9d60aa781e6ef939446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93c9afeee3c60b203644e0a1cc54028283636b4e76ba670c84522584116c1b2e
MD5 94963b75bc841cc4239e954b1e07477a
BLAKE2b-256 95cae559551d4d206a71ae545fcb690e704dfee141d88984729b0100042e91d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3624a67d12695d5c32a332bd8cc4c1d45273eba1a4a451a0ecf70f4c3e67dd4f
MD5 d2cad42364b36cfe962e1fa0d929305e
BLAKE2b-256 d9bf52665f48d449fa1586fb775468e2fa83ebc8e222eb2d18332b3b5f12f933

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.2.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.2.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.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d634cba354a3ca61837e5a8d9a6ee19d9d37927ec288f0828437b2620ae83fb
MD5 90274cec97829ca4cf1a5420d135b012
BLAKE2b-256 6159c8bd0a5a39770cf7c0d864cbb65ac5df57405ee28a51fd5c11a5fbf1a169

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 28828f15a7429a7f7570a1465f9b71ccf7f99ea0a6bf786be7c276777f3cdc14
MD5 d6e7804be51955d1a342dbca1303d6ad
BLAKE2b-256 36f8cba3372ca8d777cf5c3e312b35112ff608cf6b0b2f6a813b600b69763495

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9c36bbd7cc85629d77f9537ad02bc438b3e3f9f1741a43f1cede1027fd9ebfb5
MD5 b440e8e346dfab21706f2cf5f2b9f90c
BLAKE2b-256 0f8a980e349fac1e1ba596f440b24901af498399c6e33b83032abbf22fed7d21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f04bcbb75de26d39de81e7c02a784cb55a706c6ce9665b8df218fa9275193a1a
MD5 674f1ee32af0379889e3ade3ec412976
BLAKE2b-256 d51612f84de430428f620a6ced01fd2768d2296951d7543b81d971455f39ef75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 79a18d5d707cd92fc7ce28c4a1a63cfdaf8d19223b3167d2d879042bf1c018ac
MD5 d6aee0c305af2770635a4014575cae1a
BLAKE2b-256 f211dc21a59734f2ce145a9a7f2d0016987cedf95598a850a3f4ab6ce73ddea0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f194a3cb53173f8bf8160597d39be16731e576ccf0244e7694e3aeac47e6c85d
MD5 009ea8c7a0cd412a56c99bd916a66316
BLAKE2b-256 dbb2549d1933995ccf4464b29f068f6fdd1e2d9f6abc8ecbcab99dd90d4d28fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ff2348b69da19243b7148f69fc60753c27b3efe313dfb29dcb642b4b3a064261
MD5 903f1334e3ffb144d876d1466ad45e46
BLAKE2b-256 fb53235dcac25478d60c4e58b6f982b91550b60908dbc07ab42405f818f41794

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 65e7591b20aa803c87a104c0dc9129a984f04adec9b042d88c7a14d1254c9524
MD5 9809490de84ee22d27620ac1b5565d7e
BLAKE2b-256 2a5674b78b9313af6e330b04ae010a98e1d8cc133254c3c53ae2b5e5f4d5ec83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 84a0b581408efce8624b887326e0b285fc2e5ba32348b9b6e6775f171fd4926b
MD5 9b1968bceacafea98c4fcdc8d3b34892
BLAKE2b-256 21951d699d9bc9a94ad5b8bc06d1a59246a5adce02668e3773a8c29b1f5a7554

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for backports_zstd-1.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 77f0e7e71506e12f99927ddea7ab1de5933d47c9af048d05a229246977d89127
MD5 6594242e00fe62a96923b71d29d0efc4
BLAKE2b-256 fb81f9a762ad3e965324a19574c1aa7b39ac35196bc072534efd34b24bec9786

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a3450d9cf69d76843ea195c1defeff087b68a8a4a3687f0927f870ab594e062
MD5 62292db6b164ba8d32992f33ba11bedf
BLAKE2b-256 6bc6a2e494d412728fc04c7e1f40479bac80c505f9eaeafa8048f764104dbfc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 157950cfd4ed85e03c2557067867e37090796b556c613badfaefcdf2750e95e1
MD5 3295801de3e73df44b56e8e52cf74439
BLAKE2b-256 4a988918bb085bb2f333d5785cc67918c65e497674de6d53834c1c42233ddde0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 57e773e295e7d56bd67a2f57071b1c978832566d0f908d7d7aabb16f35401810
MD5 d90eeed8d8bca35dbcef2d6c02faab15
BLAKE2b-256 aa14ef90815a3ad6eabbca59b9cd62013c39acfd38c7cf1f5da31c733520a6d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 97d06ec9b5b21fb59cfa5e716ca1c91f3bac2cd2c3b14e21c3d29fa1b2b0baf9
MD5 33c76b2a6209a5d94af985f287b687cb
BLAKE2b-256 407e09a807f3920fa1fe4ae019275d5978168d94fe8615c5bde3f7969760edb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1923ac203545a18a1b9726f6ae7bed1ab4f8825f0b8f4a32d2795932af3f5322
MD5 59f1a20f415aa7c760032686d9279594
BLAKE2b-256 0a0f1e1c6a154026bcdd2daecb1abd1d924cb6d274b0f7bae4042f83fb0e97ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35a445eb01e525ae8dec59fcbabcc373c9ace57f8c10455185038f54a930a039
MD5 65ae24612f09f7c5da4abe2c67035b45
BLAKE2b-256 d44bd1595a7d877e67da6ec6d759d08f5dedaca59d4317c6116b19fd9e3c60bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b04638b6adf68f730b04b21ac81fb58eef2ea10f6c221aa653f1009c0afcf67b
MD5 3c6f43424521f3a2d58fb6d96af23c6b
BLAKE2b-256 339226c7f8bee4cb3e6aae08b04351aa5578d30bac2701197ca2e3cb2b785978

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.2.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.2.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.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bf700fd79758417b1c0b725a56fa485ba15b10ee07ada736ff7e669fddd28b38
MD5 8ef06b945f83d9f8f233f90891d333b1
BLAKE2b-256 968fb28147869bb8aba7a0b30f05cfec567d90002c4161dabb8315f002709ee3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 153e1af06e348f5ed1b104c345880c001824a192536940a8d012d33014b27ecf
MD5 c62627bcf40696ba601b17dfab53825d
BLAKE2b-256 bceace04fed217a484ad9f3e8e087dd29c198dbfcb2d4d2c216d044a2a18aea8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 75c35e5292d5c5fa879ce3f40428fdb510b11a98801ccf1140690ed7a9c13b3d
MD5 5a3a6a1982af8422b2091f2feb5274f6
BLAKE2b-256 4dea07b6ee0956b522e6a8e0aca97d7b28ed0dc72a7c35a5b77485d2b8d7c4dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8c7239b457f4d51c03634edb0c9b2ebdffc6806f58c0396209f5eb7f8d7642e
MD5 b0aa00280b03dabee334dc2937d8eed4
BLAKE2b-256 19daf23872cd114b5352c97bf83a2082427aa08bd22f42461309c23783e82da5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4cd00e5bfd6d17233809f08d979742a5b9c322162d8daea16f7c3538387b9c64
MD5 49fe89bddac8cb11c6b6bc41a9ebb30a
BLAKE2b-256 f878369773911bd9968ca5f4e10ee4232ab6b71cbe45d6e17c78d3399e4a3944

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e6433f889edb998abe33f3498c37ddd97b3ce3607eebbc0fed148f8c7c7f2ef
MD5 0bd623dadd4626f7d806f0a74747ef33
BLAKE2b-256 365bf03eeaee5b17cf88d9f252381f5b8573b1a1c958787af68e9d287c65086a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b47ed63b1c04e06981ac552d107945752d1ffecae98a4bce9c8a627490ce460d
MD5 274197845ce6063bcd99d7da1db3402e
BLAKE2b-256 b840f914ee5a00c1f5df9a162efd7130db7ab339b838e6b1613eb2ed7f0594a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4d50bd23c4520e1ccd60af59f8aadc43ce3a481f2793afe01c18a7aa6a518892
MD5 d54d9538022b550f05a1a28de10dbc53
BLAKE2b-256 c4e7cc45af33a4e4aee365ab76c3f4fcadf984fea221563c2c29c5613cffeaa9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cf6e2cbe1e637a834e1920ded11e423897a9822d17a0be9486d3f63554f51618
MD5 ac15b3fae6c1a60125e54375d01e10a4
BLAKE2b-256 dd649f8a05ff703f5bdc2b2c9c8e5797299eb2cf4791226a46b2e14489784b4a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for backports_zstd-1.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e456426bf45dd8d818df5ce6b81faaf3961ef8b16834e91cbe2b739346abe9fb
MD5 41819c1058ee3a038b466c5d4786098b
BLAKE2b-256 065e4fb7553901245637ae70d934f5ae719be7207aea3243b254a19f5947b554

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9dc4c9cf3804e6b6cc5aa9aedc63cf81551cc4f6150ea4b248b95de84051317d
MD5 eed06d1b0da55c477f512566e7e9f6ee
BLAKE2b-256 fb1901d30f83e87ae4890297f0d2422eb2fad0679c48eb65de8f2c8e131a9345

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 26301adc3008c2de40fedf780deb2bceb79471ea89efba37d30768871313f673
MD5 5603af632755eab91b633b092e1bf2ad
BLAKE2b-256 5e67cc1cd5cbb8982ca156393b8b50698b86efdd0245ba56f3b3b539950061c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 18b510dd03a2b7cdda62744802d8c43df7f027f578c4e67f6fa7208d8691db84
MD5 906589799269bcfcb9767efd60af8a0d
BLAKE2b-256 47d90eabba1630f4b0674ce6ae79793e8901b0cdb28c83a484b424df29ed66dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f7fd5d7c8c1c7b26b52b49bf3e392c3c6295658a34a887c587044b37a0b68a3c
MD5 a8c02161556e125154b2691a2c1c746e
BLAKE2b-256 b32a99f7d247b974de0e5238796e85ba29e49c285a2d8a51c3b6f5b8abd4cd93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 772ad9b56a546fde9c1636dcf525d727330b11c6e34c9af8f879f23b41a8054e
MD5 ecd55c15e1060bb2a407e7710abb8e04
BLAKE2b-256 ee247e0d77b17a3ae899a0c3f5ed9be842a8e6134577ea3411d8ff0e3962764d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c276433f6bbe67a8c71fa78bbfe1d7859ee17f799e6fcff9ac250840e38608d4
MD5 a47f575567b728336f44545375f8d573
BLAKE2b-256 fdefb40a17346294c892d93fa738f48fc145432fa4ff265cf2d1ab3c177f10b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 270f10d14852fd11f85e1199f59fcb9dbcb425d489c678e5b0ea669c091b1cf3
MD5 c7474a4839ec115a5084d8b94e40703c
BLAKE2b-256 e9e24fd0071eb6035d6a412f6c5c2802ebacdbb845569dbb7a1e723c13cc1742

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.2.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.2.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.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 199c41106c05bf12cb665a1d105ce2185da5e190e13b95933420d6fd9cd8bb10
MD5 984a59a18083afd29b98b6dfd94f0e9f
BLAKE2b-256 92885f40f9ead71dfb234fb7ab3c7949f2c0aa52eaed3f75115e4e7cfb5528f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 743feb4e13e0f41a22d257bb5d2d4323f0308ecfedfd53db69172e2d9c3e4ba8
MD5 c26c825346b8d89aad217a713a7c2e1e
BLAKE2b-256 84a3a2780c37d876badb483815239f2cc9bd863123248e20b2290e3f08355b7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b72f4fe1764d53c6f8526d53ef566dcbe71daa81b3219fd802b51a153692159a
MD5 6e56b34cf8901dbd200249e17e6726db
BLAKE2b-256 2cb92c01e970e69f7ea2fa9710373fa4b48d31e677098d04d9b05d01e109feef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb922d2f278ec2e62a29121f98e573f622cefa9408dc0462a0e51ac08bca30b8
MD5 ed1517daf8845327ff88a68e4379bd0d
BLAKE2b-256 328def8a8051374a1948d19c9888d2898d7091314448360a803bffc8474bbf58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7137114011f380f7e8bd97d92664b5bd71ab5f6e08144f22836263ad45273af2
MD5 2c134eba863cac981b6382f4aeb41cda
BLAKE2b-256 10161045c674bb09fad1b838098c0b16a88bae9a7bab5e305aac11e55a8c813e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8dc2d15224ea683bbf7ad6aa8eacde40972c2c700e8ff72862cb0663e18ae953
MD5 a0f026d45d62e9aa926d7c6c4cda45ec
BLAKE2b-256 6c62a06ddca84e3c0ec45e667a02be5c4a157ab5e1e940d65096a80d409f0557

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 68d70396997cbaaf8e571dee93f05c4cec5053ef14a6e165c26ad4aadca6b7ee
MD5 9770cda38b60a4c22d4e96103aa1148b
BLAKE2b-256 a09701630376854dab8cc6e58819236c46ffc40bc2ad1c5a82b430e0c5b79009

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 4200498fd135cf7ef2c96859b11ba3ad95c10be797d8b85da9f027206bbdba4a
MD5 a432c0e488c6a6f88b8e5dad4058919f
BLAKE2b-256 a5acc5f3404c2c8619ae30c23e2e1a1dea967a5fa32b708d6436f24f2a71c3d7

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 82224c54b5ef014a310cc0790b1cb70adab9ab9b0d6b7971e68513c8c0156b15
MD5 463182028406b42b27db63ffd85a7f6a
BLAKE2b-256 652c06fdaafd094c688b8b54e53427947115f461452184974784ad830b373364

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

  • Download URL: backports_zstd-1.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 288.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 570b2d499f4cb59e70b7eccbe4ae0d94a8d80696731993f70dc608a52bd1407c
MD5 075dbc4ac25c4e21747560fe6a1fb7ec
BLAKE2b-256 96429b444f6260a0d1fa110bf5357531e8b7cc5ad5879d3b557ef4fa47989876

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b855ca6b343129966b498d7343094c719c35d6f7a6f807c953dc00b00edc41e
MD5 8ab08173a36c5a0006a84d09ad9908b3
BLAKE2b-256 b8e9b447deb989fe91c89ea4a4483c1744d52dd5f745c9ef8395c81509f98fbe

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9a46613ce06dd8179c221cae299e04dc5fba3bafe297c88a4826b826b76e0b9d
MD5 25374e40df603cab345e37baef7625b0
BLAKE2b-256 e5e312be51b5f9f8681f92328530346624311ef3f761529558630cb73d3fab5f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-1.2.0-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6a6f5f53c8b33b4a2192a6a7132921fd3c1338d1961f7c932d077414aacf4039
MD5 62ccedbd01b81a3dc838da0a90f72115
BLAKE2b-256 47b933472ced7490cf0306fe88d6a03c9dd7ee27854bf57220bd1b4c314633d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.2.0-cp39-cp39-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.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ce8f476ac0792d4096ae011887a6f3e5b9c6f78fdca2d9d7c8bca469bb0e7acb
MD5 24dbb8ff8b82cf62c9ce54ac83f9f18b
BLAKE2b-256 9d5aa1e083ea8104adb9b601f3028ed6d41ce6fe73e7e7887018610bbc087bf2

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 118d9ff455bb7fb477c30e41f6c1abbe16da63ffd566d210348fa884e07b8f75
MD5 7afdc59fb117bc354c34620f9d749f65
BLAKE2b-256 709f4b7bfd659f0315657e64b91c1e29b2a6395508bc08caefef9eb59c7cb93b

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e9eea5ced6796db3e0d0243d5836fc4c11d94110da20fa774c5384c65acb635
MD5 419f9d306efd39007daac65efd387e2c
BLAKE2b-256 5288e5e0a9e758656e3eed0999bd8566c3066f0405d05509b50047cfffdc4389

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

Details for the file backports_zstd-1.2.0-cp39-cp39-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 12112452040f341ea9f5e0bb8bb496e954696078c2ad0055e2c1136e02df9492
MD5 89e32f49ad95e50800a28c4c4fdd8540
BLAKE2b-256 d3d9a94646e79f682a2077d58aeb1442d413530107412aefaa43d471c07ab2be

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.2.0-cp39-cp39-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.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f75dfdfdc7a11e8dba094e09981eede1c1fc8bd5f68a94c4b4d729876741cf5b
MD5 2ff3ee3865214f93c50204203cf9eb5d
BLAKE2b-256 ee8527e8c2d64de841e6579c3b1736b4f6d95ab397c1d1ba0131dadd87aecf00

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8c1b3038c435882917582247cd03e16a50f495e1ae9c80bc21fb32a05e5c0b8c
MD5 8bc1d5f10782bb28cb7fea01b17d308c
BLAKE2b-256 4d349c913beaf971cf9e01472db757c596e96757b85705d2b019ab23b8f7088c

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5d8bc650565208c429e6886bd943f57215b8fbf75ba2d0bb18b6e114273acb07
MD5 19ef85ca798d86af2a605e044985b904
BLAKE2b-256 33a80b3c0d66a1f64e835587aa8b028096c9b1e4b1479d6142e804c8e0c5fbbf

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3ceb76524ec695d579b97816a5353196d6a647df7f37694e4d96ff5a6f041f97
MD5 30b4da450be49334eae976aefc8fd102
BLAKE2b-256 989364e517da07675d28a8d2083f7e3e81e122a9f08c727612681f5489de9b46

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ca65733cfc10c25653dbe8658e8779071190009fc60a1985e19acc30bbbb0136
MD5 7d07366e1f0756518f2701a161b23180
BLAKE2b-256 2f9c49d848425ef5969b8d3e3f20277eaa6fd6c31e18efa34be4017b5447ebd0

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a543a73d90b1870a6f6c0c4eb2dc33a76c7b9eac7726f3daac054b01da1de84d
MD5 abfd20c498b3c3f3da4664a524514093
BLAKE2b-256 27fcdcb01ce50e1722fabdbf61875a3b02a8c57a500889ec3c301d7b67a200f6

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

File details

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

File metadata

File hashes

Hashes for backports_zstd-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b628fa060ec2190df655b03797be29b93f8e634bc424ef9bd41259ee83f09b6a
MD5 dd6535c98b410109d3f32a27623005c0
BLAKE2b-256 da3f4830b483f79b5aa4ed177034097e9c3998eca7663adf0f1d2bc285a4f55f

See more details on using hashes here.

Provenance

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

Publisher: build.yml on Rogdham/backports.zstd

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

Supported by

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