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.3.0.tar.gz (997.1 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.3.0-pp311-pypy311_pp73-win_amd64.whl (299.7 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-1.3.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (413.8 kB view details)

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

backports_zstd-1.3.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (393.9 kB view details)

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

backports_zstd-1.3.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (420.3 kB view details)

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

backports_zstd-1.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (339.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-1.3.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (409.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-1.3.0-pp310-pypy310_pp73-win_amd64.whl (299.7 kB view details)

Uploaded PyPyWindows x86-64

backports_zstd-1.3.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (413.8 kB view details)

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

backports_zstd-1.3.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (393.9 kB view details)

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

backports_zstd-1.3.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (420.3 kB view details)

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

backports_zstd-1.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (339.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

backports_zstd-1.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (409.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

backports_zstd-1.3.0-cp313-cp313t-win_arm64.whl (289.3 kB view details)

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

backports_zstd-1.3.0-cp313-cp313t-win32.whl (289.4 kB view details)

Uploaded CPython 3.13tWindows x86

backports_zstd-1.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (499.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

backports_zstd-1.3.0-cp313-cp313t-musllinux_1_2_s390x.whl (630.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

backports_zstd-1.3.0-cp313-cp313t-musllinux_1_2_riscv64.whl (568.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

backports_zstd-1.3.0-cp313-cp313t-musllinux_1_2_ppc64le.whl (585.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

backports_zstd-1.3.0-cp313-cp313t-musllinux_1_2_i686.whl (511.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

backports_zstd-1.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (482.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

backports_zstd-1.3.0-cp313-cp313t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (570.4 kB view details)

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

backports_zstd-1.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (494.8 kB view details)

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

backports_zstd-1.3.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (639.9 kB view details)

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

backports_zstd-1.3.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (580.9 kB view details)

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

backports_zstd-1.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.5 kB view details)

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

backports_zstd-1.3.0-cp313-cp313t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (507.6 kB view details)

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

backports_zstd-1.3.0-cp313-cp313t-macosx_11_0_arm64.whl (362.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

backports_zstd-1.3.0-cp313-cp313t-macosx_10_13_x86_64.whl (436.2 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

backports_zstd-1.3.0-cp313-cp313-win_arm64.whl (288.7 kB view details)

Uploaded CPython 3.13Windows ARM64

backports_zstd-1.3.0-cp313-cp313-win_amd64.whl (313.7 kB view details)

Uploaded CPython 3.13Windows x86-64

backports_zstd-1.3.0-cp313-cp313-win32.whl (288.4 kB view details)

Uploaded CPython 3.13Windows x86

backports_zstd-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (495.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

backports_zstd-1.3.0-cp313-cp313-musllinux_1_2_s390x.whl (632.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

backports_zstd-1.3.0-cp313-cp313-musllinux_1_2_riscv64.whl (563.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

backports_zstd-1.3.0-cp313-cp313-musllinux_1_2_i686.whl (509.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

backports_zstd-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (481.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

backports_zstd-1.3.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (566.1 kB view details)

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

backports_zstd-1.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (490.8 kB view details)

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

backports_zstd-1.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (642.2 kB view details)

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

backports_zstd-1.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.3 kB view details)

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

backports_zstd-1.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.9 kB view details)

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

backports_zstd-1.3.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (505.7 kB view details)

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

backports_zstd-1.3.0-cp313-cp313-macosx_11_0_arm64.whl (361.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

backports_zstd-1.3.0-cp313-cp313-macosx_10_13_x86_64.whl (435.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

backports_zstd-1.3.0-cp312-cp312-win_arm64.whl (288.9 kB view details)

Uploaded CPython 3.12Windows ARM64

backports_zstd-1.3.0-cp312-cp312-win_amd64.whl (313.8 kB view details)

Uploaded CPython 3.12Windows x86-64

backports_zstd-1.3.0-cp312-cp312-win32.whl (288.8 kB view details)

Uploaded CPython 3.12Windows x86

backports_zstd-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (498.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

backports_zstd-1.3.0-cp312-cp312-musllinux_1_2_s390x.whl (630.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

backports_zstd-1.3.0-cp312-cp312-musllinux_1_2_riscv64.whl (566.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

backports_zstd-1.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl (586.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

backports_zstd-1.3.0-cp312-cp312-musllinux_1_2_i686.whl (509.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

backports_zstd-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (482.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

backports_zstd-1.3.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (568.6 kB view details)

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

backports_zstd-1.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (494.2 kB view details)

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

backports_zstd-1.3.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (640.4 kB view details)

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

backports_zstd-1.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.7 kB view details)

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

backports_zstd-1.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (476.2 kB view details)

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

backports_zstd-1.3.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.4 kB view details)

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

backports_zstd-1.3.0-cp312-cp312-macosx_11_0_arm64.whl (362.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

backports_zstd-1.3.0-cp312-cp312-macosx_10_13_x86_64.whl (436.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

backports_zstd-1.3.0-cp311-cp311-win_arm64.whl (288.8 kB view details)

Uploaded CPython 3.11Windows ARM64

backports_zstd-1.3.0-cp311-cp311-win_amd64.whl (313.6 kB view details)

Uploaded CPython 3.11Windows x86-64

backports_zstd-1.3.0-cp311-cp311-win32.whl (288.7 kB view details)

Uploaded CPython 3.11Windows x86

backports_zstd-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (495.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

backports_zstd-1.3.0-cp311-cp311-musllinux_1_2_s390x.whl (631.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

backports_zstd-1.3.0-cp311-cp311-musllinux_1_2_riscv64.whl (562.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

backports_zstd-1.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl (585.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

backports_zstd-1.3.0-cp311-cp311-musllinux_1_2_i686.whl (509.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

backports_zstd-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (481.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

backports_zstd-1.3.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (565.1 kB view details)

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

backports_zstd-1.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (491.1 kB view details)

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

backports_zstd-1.3.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (640.9 kB view details)

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

backports_zstd-1.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.2 kB view details)

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

backports_zstd-1.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.6 kB view details)

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

backports_zstd-1.3.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.0 kB view details)

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

backports_zstd-1.3.0-cp311-cp311-macosx_11_0_arm64.whl (362.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

backports_zstd-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl (435.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

backports_zstd-1.3.0-cp310-cp310-win_arm64.whl (288.7 kB view details)

Uploaded CPython 3.10Windows ARM64

backports_zstd-1.3.0-cp310-cp310-win_amd64.whl (313.5 kB view details)

Uploaded CPython 3.10Windows x86-64

backports_zstd-1.3.0-cp310-cp310-win32.whl (288.6 kB view details)

Uploaded CPython 3.10Windows x86

backports_zstd-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (495.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

backports_zstd-1.3.0-cp310-cp310-musllinux_1_2_s390x.whl (631.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

backports_zstd-1.3.0-cp310-cp310-musllinux_1_2_riscv64.whl (562.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

backports_zstd-1.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl (585.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

backports_zstd-1.3.0-cp310-cp310-musllinux_1_2_i686.whl (509.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

backports_zstd-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (481.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

backports_zstd-1.3.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (565.1 kB view details)

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

backports_zstd-1.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (491.1 kB view details)

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

backports_zstd-1.3.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (640.8 kB view details)

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

backports_zstd-1.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.2 kB view details)

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

backports_zstd-1.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.6 kB view details)

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

backports_zstd-1.3.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.0 kB view details)

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

backports_zstd-1.3.0-cp310-cp310-macosx_11_0_arm64.whl (362.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

backports_zstd-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl (435.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

backports_zstd-1.3.0-cp39-cp39-win_arm64.whl (288.7 kB view details)

Uploaded CPython 3.9Windows ARM64

backports_zstd-1.3.0-cp39-cp39-win_amd64.whl (313.5 kB view details)

Uploaded CPython 3.9Windows x86-64

backports_zstd-1.3.0-cp39-cp39-win32.whl (288.6 kB view details)

Uploaded CPython 3.9Windows x86

backports_zstd-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (495.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

backports_zstd-1.3.0-cp39-cp39-musllinux_1_2_s390x.whl (631.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

backports_zstd-1.3.0-cp39-cp39-musllinux_1_2_riscv64.whl (563.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

backports_zstd-1.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl (585.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

backports_zstd-1.3.0-cp39-cp39-musllinux_1_2_i686.whl (509.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

backports_zstd-1.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (481.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

backports_zstd-1.3.0-cp39-cp39-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl (565.1 kB view details)

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

backports_zstd-1.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (491.2 kB view details)

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

backports_zstd-1.3.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (641.0 kB view details)

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

backports_zstd-1.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (581.4 kB view details)

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

backports_zstd-1.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (475.7 kB view details)

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

backports_zstd-1.3.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl (506.1 kB view details)

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

backports_zstd-1.3.0-cp39-cp39-macosx_11_0_arm64.whl (362.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

backports_zstd-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl (435.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: backports_zstd-1.3.0.tar.gz
  • Upload date:
  • Size: 997.1 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.3.0.tar.gz
Algorithm Hash digest
SHA256 e8b2d68e2812f5c9970cabc5e21da8b409b5ed04e79b4585dbffa33e9b45ebe2
MD5 d3ea3b11743ecd53cc8302827d98fccc
BLAKE2b-256 f4b136a5182ce1d8ef9ef32bff69037bd28b389bbdb66338f8069e61da7028cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2524bd6777a828d5e7ccd7bd1a57f9e7007ae654fc2bd1bc1a207f6428674e4a
MD5 6d04dd1d98840cf7078cf6f62ec91bf5
BLAKE2b-256 8dec6247be6536668fe1c7dfae3eaa9c94b00b956b716957c0fc986ba78c3cc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.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.3.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 199eb9bd8aca6a9d489c41a682fad22c587dffe57b613d0fe6d492d0d38ce7c5
MD5 6b4746e5ed3fcd8c1c4d44dc243a3e93
BLAKE2b-256 0f38c97428867cac058ed196ccaeddfdf82ecd43b8a65965f2950a6e7547e77a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 676eb5e177d4ef528cf3baaeea4fffe05f664e4dd985d3ac06960ef4619c81a9
MD5 01c3f5bfb172912074f2d0e7ab619c93
BLAKE2b-256 cf80c0cdbc533d0037b57248588403a3afb050b2a83b8c38aa608e31b3a4d600

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-pp311-pypy311_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e0f2eca6aac280fdb77991ad3362487ee91a7fb064ad40043fb5a0bf5a376943
MD5 7c16e56233539959e5b46bb4330e0ba6
BLAKE2b-256 9d13ce31bd048b1c88d0f65d7af60b6cf89cfbed826c7c978f0ebca9a8a71cfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8f6fc7d62b71083b574193dd8fb3a60e6bb34880cc0132aad242943af301f7a
MD5 4e18c68f4c6abdf6c81d7c3a4cd14508
BLAKE2b-256 a44fa55b33c314ca8c9074e99daab54d04c5d212070ae7dbc435329baf1b139e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 968167d29f012cee7b112ad031a8925e484e97e99288e55e4d62962c3a1013e3
MD5 634db7f1c358f685351b70287d9cffcb
BLAKE2b-256 9ad98c9c246e5ea79a4f45d551088b11b61f2dc7efcdc5dbe6df3be84a506e0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 993e3a34eaba5928a2065545e34bf75c65b9c34ecb67e43d5ef49b16cc182077
MD5 3065f2d6c710133e4391bd7eeecf492e
BLAKE2b-256 36283b7be27ae51e418d3a724bbc4cb7fea77b6bd38b5007e333a56b0cb165c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.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.3.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32974e71eff15897ed3f8b7766a753d9f3197ea4f1c9025d80f8de099a691b99
MD5 883db53d74ca73f52978c43e2ce300d4
BLAKE2b-256 bee0d1feebb70ffeb150e2891c6f09700079f4a60085ebc67529eb1ca72fb5c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 330172aaf5fd3bfa53f49318abc6d1d4238cb043c384cf71f7b8f0fe2fb7ce31
MD5 a22b0b59b9a3bc3142240220c652f4e5
BLAKE2b-256 626dbf55652c84c79b2565d3087265bcb097719540a313dee16359a54d83ab4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-pp310-pypy310_pp73-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 477895f2642f9397aeba69618df2c91d7f336e02df83d1e623ac37c5d3a5115e
MD5 fefd6b79be485632f66767ec2febeeac
BLAKE2b-256 3fb0f0ce566ec221b284508eebbf574a779ba4a8932830db6ea03b6176f336a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b97cea95dbb1a97c02afd718155fad93f747815069722107a429804c355e206
MD5 35c801a022b3eff005f614086b47cf09
BLAKE2b-256 faa5d6a897d4b91732f54b4506858f1da65d7a5b2dc0dbe36a23992a64f09f5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3ab0d5632b84eff4355c42a04668cfe6466f7d390890f718978582bd1ff36949
MD5 f8be2f4d996cbbaf107f4e2122ae7a5c
BLAKE2b-256 95b7e843d32122f25d9568e75d1e7a29c00eae5e5728015604f3f6d02259b3a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 c66ad9eb5bfbe28c2387b7fc58ddcdecfb336d6e4e60bcba1694a906c1f21a6c
MD5 0f952df635d57742b97fac225cfe45c0
BLAKE2b-256 014b82e4baae3117806639fe1c693b1f2f7e6133a7cefd1fa2e38018c8edcd68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 eb2f8fab0b1ea05148394cb34a9e543a43477178765f2d6e7c84ed332e34935e
MD5 4f7b01484c0bbf11569773f163be9357
BLAKE2b-256 cbffdbcfb6c9c922ab6d98f3d321e7d0c7b34ecfa26f3ca71d930fe1ef639737

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 7d3f0f2499d2049ec53d2674c605a4b3052c217cc7ee49c05258046411685adc
MD5 66221d280b555cb0e8fe0d786e2fe827
BLAKE2b-256 3204cfab76878f360f124dbb533779e1e4603c801a0f5ada72ae5c742b7c4d7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1049e804cc8754290b24dab383d4d6ed0b7f794ad8338813ddcb3907d15a89d0
MD5 a859af1e75a24d677eae51f2dc81c894
BLAKE2b-256 ea43258587233b728bbff457bdb0c52b3e08504c485a8642b3daeb0bdd5a76bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b4116a9e12dfcd834dd9132cf6a94657bf0d328cba5b295f26de26ea0ae1adc8
MD5 816d68f60a9daacfc7adc25442aa2345
BLAKE2b-256 83649490667827a320766fb883f358a7c19171fdc04f19ade156a8c341c36967

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cbe341c7fcc723893663a37175ba859328b907a4e6d2d40a4c26629cc55efb67
MD5 1583d3535377abd4a505d03a9126a905
BLAKE2b-256 267685b4bde76e982b24a7eb57a2fb9868807887bef4d2114a3654a6530a67ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f7be27d56f2f715bcd252d0c65c232146d8e1e039c7e2835b8a3ad3dc88bc508
MD5 d2e3cab6063fd7e63f99739f651a3e86
BLAKE2b-256 ae0fb165c2a6080d22306975cd86ce97270208493f31a298867e343110570370

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b808bf889722d889b792f7894e19c1f904bb0e9092d8c0eb0787b939b08bad9a
MD5 cb70485687d6a35ab5b4cf4359548970
BLAKE2b-256 4bbb93fc1e8e81b8ecba58b0e53a14f7b44375cf837db6354410998f0c4cb6ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3e3f58c76f4730607a4e0130d629173aa114ae72a5c8d3d5ad94e1bf51f18d8
MD5 53595859ec3367eb15363eed2f569049
BLAKE2b-256 305660a7a9de7a5bc951ea1106358b413c95183c93480394f3abc541313c8679

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313t-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e38be15ebce82737deda2c9410c1f942f1df9da74121049243a009810432db75
MD5 ef46cdbf40ecced6f0139b5213b0f057
BLAKE2b-256 f9fcb8ae6e104ba72d20cd5f9dfd9baee36675e89c81d432434927967114f30f

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.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.3.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d5543945aae2a76a850b23f283249424f535de6a622d6002957b7d971e6a36d
MD5 bfacddf555b7eb609bf12d5463e7505b
BLAKE2b-256 112c7296b99df79d9f31174a99c81c1964a32de8996ce2b3068f5bc66b413615

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8e7ac5ef693d49d6fb35cd7bbb98c4762cfea94a8bd2bf2ab112027004f70b11
MD5 cab2e91fa7a50a39f5c8ec8e17181d60
BLAKE2b-256 1ba3eb5d9b7c4cb69d1b8ccd011abe244ba6815693b70bed07ed4b77ddda4535

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1c389b667b0b07915781aa28beabf2481f11a6062a1a081873c4c443b98601a7
MD5 bd49def3351f3fcf6c45edbfb2ef2e69
BLAKE2b-256 181ec82a586f2866aabf3a601a521af3c58756d83d98b724fda200016ac5e7e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0205ef809fb38bb5ca7f59fa03993596f918768b9378fb7fbd8a68889a6ce028
MD5 4939e74459fc811abcc10cd1b38bee46
BLAKE2b-256 3ef12ce499b81c4389d6fa1eeea7e76f6e0bad48effdbb239da7cbcdaaf24b76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313t-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 127b0d73c745b0684da3d95c31c0939570810dad8967dfe8231eea8f0e047b2f
MD5 f34752572abed357f807f623e7135d2e
BLAKE2b-256 c4f706e178dbab7edb88c2872aebd68b54137e07a169eba1aeedf614014f7036

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4abf29d706ba05f658ca0247eb55675bcc00e10f12bca15736e45b05f1f2d2dc
MD5 3f50f6e2fb7ca2dbb18101901116637e
BLAKE2b-256 f614e504daea24e8916f14ecbc223c354b558d8410cfc846606668ab91d96b38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 10057d66fa4f0a7d3f6419ffb84b4fe61088da572e3ac4446134a1c8089e4166
MD5 fcc6f9574056ff91a1f0d504b3bd0d36
BLAKE2b-256 a7b935f423c0bcd85020d5e7be6ab8d7517843e3e4441071beb5c3bd8c5216cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4321a8a367537224b3559fe7aeb8012b98aea2a60a737e59e51d86e2e856fe0a
MD5 8b23775c13fb418f7ff0da8e27b1fe8d
BLAKE2b-256 450f60918fe4d3f2881de8f4088d73be4837df9e4c6567594109d355a2d548b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 385bdadf0ea8fe6ba780a95e4c7d7f018db7bafdd630932f0f9f0fad05d608ff
MD5 d33097594d4e04a91ac810f013d38c5a
BLAKE2b-256 a282b1df1bbbe4e6d3ffd364d0bcffdeb6c4361115c1eccd91238dbdd0c07fec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 288.4 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.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 668e6fb1805b825cb7504c71436f7b28d4d792bb2663ee901ec9a2bb15804437
MD5 ec9d339f11ee23c591b205cb1f4589b2
BLAKE2b-256 a38f6f7030f18fa7307f87b0f57108a50a3a540b6350e2486d1739c0567629a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ade1f4127fdbe36a02f8067d75aa79c1ea1c8a306bf63c7b818bb7b530e1beaa
MD5 ea1a7faa02c80bc39234fd98113f232a
BLAKE2b-256 75b9c823633afc48a1ac56d6ad34289c8f51b0234685142531bfa8197ca91777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 09a2785e410ed2e812cb39b684ef5eb55083a5897bfd0e6f5de3bbd2c6345f70
MD5 2f873aa8d038bca98fd6bf7a8af09f6b
BLAKE2b-256 7cee5a3eaed9a73bdf2c35dc0c7adc0616a99588e0de28f5ab52f3e0caaaa96f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 622c28306dcc429c8f2057fc4421d5722b1f22968d299025b35d71b50cfd4e03
MD5 743d8c60273d737e5bde2c9d4e3b3758
BLAKE2b-256 24bf59ca9cb4e7be1e59331bb792e8ef1331828efe596b1a2f8cbbc4e3f70d75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1623e5bff1acd9c8ef90d24fc548110f20df2d14432bfe5de59e76fc036824ef
MD5 d654df8e7aa87b0a599c18d546b563ea
BLAKE2b-256 dee712da9256d9e49e71030f0ff75e9f7c258e76091a4eaf5b5f414409be6a57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a6ff6769948bb29bba07e1c2e8582d5a9765192a366108e42d6581a458475881
MD5 82e1ced7d2ad4f27483e0a2ff9618a43
BLAKE2b-256 5c1321efa7f94c41447f43aee1563b05fc540a235e61bce4597754f6c11c2e97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 497f5765126f11a5b3fd8fedfdae0166d1dd867e7179b8148370a3313d047197
MD5 292e0db66e0fa2ca863ad1b824818ef5
BLAKE2b-256 1b0310ddb54cbf032e5fe390c0776d3392611b1fc772d6c3cb5a9bcdff4f915f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 884a94c40f27affe986f394f219a4fd3cbbd08e1cff2e028d29d467574cd266e
MD5 badf1340c24f7acdf01ac8ee9178e340
BLAKE2b-256 0fe93514b1d065801ae7dce05246e9389003ed8fb1d7c3d71f85aa07a80f41e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.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.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c4c7bcda5619a754726e7f5b391827f5efbe4bed8e62e9ec7490d42bff18aa6
MD5 58b670a83a08add55a6b6a80cbf13596
BLAKE2b-256 82a2ac67e79e137eb98aead66c7162bafe3cffcb82ef9cdeb6367ec18d88fbce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5f13033a3dd95f323c067199f2e61b4589a7880188ef4ef356c7ffbdb78a9f11
MD5 44cd9629af76ab682abb23d931f7de1c
BLAKE2b-256 e21de0973e0eebe678c12c146473af2c54cda8a3e63b179785ca1a20727ad69c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 db609e57b8ed88b3472930c87e93c08a4bbd5ffeb94608cd9c7c6f0ac0e166c6
MD5 3f51b22f9bcaf29c0f367832bf677ff2
BLAKE2b-256 0b780cde898339a339530e5f932634872d2d64549969535447a48d3b98959e11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ddc874638abf03ea1ff3b0525b4a26a8d0adf7cb46a448c3449f08e4abc276b3
MD5 34c2d09b44958c5fc5908b979dc4d73a
BLAKE2b-256 7b7b22998f691dc6e0c7e6fa81d611eb4b1f6a72fb27327f322366d4a7ca8fb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3090a97738d6ce9545d3ca5446df43370928092a962cbc0153e5445a947e98ed
MD5 6fa1eecdd2e3f50268ecbad5464970f2
BLAKE2b-256 6ded2c64706205a944c9c346d95c17f632d4e3468db3ce60efb6f5caa7c0dcae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41974dcacc9824c1effe1c8d2f9d762bcf47d265ca4581a3c63321c7b06c61f0
MD5 e5e58c05b356bffe785524617b7c6579
BLAKE2b-256 da78f98e53870f7404071a41e3d04f2ff514302eeeb3279d931d02b220f437aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e86e03e3661900955f01afed6c59cae9baa63574e3b66896d99b7de97eaffce9
MD5 25c5e4171cc5851a075202f59705b65b
BLAKE2b-256 0c7d53e8da5950cdfc5e8fe23efd5165ce2f4fed5222f9a3292e0cdb03dd8c0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f6843ecb181480e423b02f60fe29e393cbc31a95fb532acdf0d3a2c87bd50ce3
MD5 0e16ec6fbe1ec1a117725d4518aa1c11
BLAKE2b-256 4e2fbabd02c9fc4ca35376ada7c291193a208165c7be2455f0f98bc1e1243f31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 89ea8281821123b071a06b30b80da8e4d8a2b40a4f57315a19850337a21297ac
MD5 8da781eb77b88e93e9869c84e0bf90a4
BLAKE2b-256 422434b816118ea913debb2ea23e71ffd0fb2e2ac738064c4ac32e3fb62c18bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 288.8 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.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 21a9a542ccc7958ddb51ae6e46d8ed25d585b54d0d52aaa1c8da431ea158046a
MD5 00c38d0eba43734b2a1fd11aa1c82d49
BLAKE2b-256 a2a967a24007c333ed22736d5cd79f1aa1d7209f09be772ff82a8fd724c1978e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58a071f3c198c781b2df801070290b7174e3ff61875454e9df93ab7ea9ea832b
MD5 d00fe48c36483538f4caa543dc61d459
BLAKE2b-256 3033e74cb2cfb162d2e9e00dad8bcdf53118ca7786cfd467925d6864732f79cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 407e451f64e2f357c9218f5be4e372bb6102d7ae88582d415262a9d0a4f9b625
MD5 ad0e752ea0741db2d08fe3f5d12f5a18
BLAKE2b-256 dcd944c098ab31b948bbfd909ec4ae08e1e44c5025a2d846f62991a62ab3ebea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5434e86f2836d453ae3e19a2711449683b7e21e107686838d12a255ad256ca99
MD5 bdf545c0e219ebf4e1fd58f14abe5c99
BLAKE2b-256 4a1a18f0402b36b9cfb0aea010b5df900cfd42c214f37493561dba3abac90c4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b099750755bb74c280827c7d68de621da0f245189082ab48ff91bda0ec2db9df
MD5 4313917c8bd02b86d8a394b69d38a36b
BLAKE2b-256 3f7e7ba1aeecf0b5859f1855c0e661b4559566b64000f0627698ebd9e83f2138

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 27744870e38f017159b9c0241ea51562f94c7fefcfa4c5190fb3ec4a65a7fc63
MD5 599d0b89c99e5e79b070b1e487601db3
BLAKE2b-256 d94b24c7c9e8ef384b19d515a7b1644a500ceb3da3baeff6d579687da1a0f62b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7558fb0e8c8197c59a5f80c56bf8f56c3690c45fd62f14e9e2081661556e3e64
MD5 8da8cf00545688e5fae24f144b5b6d27
BLAKE2b-256 60394d29788590c2465a570c2fae49dbff05741d1f0c8e4a0fb2c1c310f31804

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp312-cp312-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2ab5d3b5a54a674f4f6367bb9e0914063f22cd102323876135e9cc7a8f14f17e
MD5 171748f0ea0838ac15cb27a802e20473
BLAKE2b-256 ba9d901f19ac90f3cd999bdcfb6edb4d7b4dc383dfba537f06f533fc9ac4777b

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.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.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eefda80c3dbfbd924f1c317e7b0543d39304ee645583cb58bae29e19f42948ed
MD5 c702fe5622d31ea969e76f6965724f86
BLAKE2b-256 71178faea426d4f49b63238bdfd9f211a9f01c862efe0d756d3abeb84265a4e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 97d8c78fe20c7442c810adccfd5e3ea6a4e6f4f1fa4c73da2bc083260ebead17
MD5 63e832035a13b963cd2055b2f4df8374
BLAKE2b-256 084f11bfcef534aa2bf3f476f52130217b45337f334d8a287edb2e06744a6515

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 88f94d238ef36c639c0ae17cf41054ce103da9c4d399c6a778ce82690d9f4919
MD5 4e66cf1b214e1381509eccdff2a2313e
BLAKE2b-256 43dc73c090e4a2d5671422512e1b6d276ca6ea0cc0c45ec4634789106adc0d66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3321d00beaacbd647252a7f581c1e1cdbdbda2407f2addce4bfb10e8e404b7c7
MD5 45e31f9a423af769b1210b8e35b91ae0
BLAKE2b-256 dfc83f12a411d9a99d262cdb37b521025eecc2aa7e4a93277be3f4f4889adb74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f52523d2bdada29e653261abdc9cfcecd9e5500d305708b7e37caddb24909d4e
MD5 1e9094f83dc40369cecdc4ecb9ba211c
BLAKE2b-256 554b173beafc99e99e7276ce008ef060b704471e75124c826bc5e2092815da37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb4c386f38323698991b38edcc9c091d46d4713f5df02a3b5c80a28b40e289ea
MD5 5dc2dffcf532c97115148635fa9e60ee
BLAKE2b-256 308fdbe389e60c7e47af488520f31a4aa14028d66da5bf3c60d3044b571eb906

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f4a292e357f3046d18766ce06d990ccbab97411708d3acb934e63529c2ea7786
MD5 e96a4cc5456817476530fac5c1d2c296
BLAKE2b-256 72d4356da49d3053f4bc50e71a8535631b57bc9ca4e8c6d2442e073e0ab41c44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 440ef1be06e82dc0d69dbb57177f2ce98bbd2151013ee7e551e2f2b54caa6120
MD5 5494a6d5edf7fca699ec7be8894adfe6
BLAKE2b-256 35e7eca40858883029fc716660106069b23253e2ec5fd34e86b4101c8cfe864b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d8aac2e7cdcc8f310c16f98a0062b48d0a081dbb82862794f4f4f5bdafde30a4
MD5 b5c57f98b3d3384f364034651ea2d87d
BLAKE2b-256 281a379061e2abf8c3150ad51c1baab9ac723e01cf7538860a6a74c48f8b73ee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 288.7 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.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 08dfdfb85da5915383bfae680b6ac10ab5769ab22e690f9a854320720011ae8e
MD5 bdd396c92c75390dac193725798a81e2
BLAKE2b-256 efd8bcff0a091fcf27172c57ae463e49d8dec6dc31e01d7e7bf1ae3aad9c3566

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba7114a3099e5ea05cbb46568bd0e08bca2ca11e12c6a7b563a24b86b2b4a67f
MD5 3b6843b8646b5514a1fb58332b934074
BLAKE2b-256 b9a8d64b59ae0714fdace14e43873f794eff93613e35e3e85eead33a4f44cd80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8aeee9210c54cf8bf83f4d263a6d0d6e7a0298aeb5a14a0a95e90487c5c3157c
MD5 82dcb591b5c774d6557b7c51eded7977
BLAKE2b-256 74e82110d4d39115130f7514cbbcec673a885f4052bb68d15e41bc96a7558856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d339c1ec40485e97e600eb9a285fb13169dbf44c5094b945788a62f38b96e533
MD5 519307cdf58f4d5a70345a026cdfd7bb
BLAKE2b-256 938dc2c4f448bb6b6c9df17410eaedce415e8db0eb25b60d09a3d22a98294d09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 94048c8089755e482e4b34608029cf1142523a625873c272be2b1c9253871a72
MD5 7b39282ca899c7f288ce9c0ff0686987
BLAKE2b-256 f4372c365196e61c8fffbbc930ffd69f1ada7aa1c7210857b3e565031c787ac6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e137657c830a5ce99be40a1d713eb1d246bae488ada28ff0666ac4387aebdd5
MD5 75b2f230b6c69e719aa0fef4ee4a5dab
BLAKE2b-256 081fb06f64199fb4b2e9437cedbf96d0155ca08aeec35fe81d41065acd44762e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea0886c1b619773544546e243ed73f6d6c2b1ae3c00c904ccc9903a352d731e1
MD5 8f53e957af65328cf7c70582e36c38ea
BLAKE2b-256 e1ac50209aeb92257a642ee987afa1e61d5b6731ab6bf0bff70905856e5aede6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp311-cp311-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 60aa483fef5843749e993dde01229e5eedebca8c283023d27d6bf6800d1d4ce3
MD5 d2f665736963bfc869f7977859f224d3
BLAKE2b-256 a6a3f5ac28d74039b7e182a780809dc66b9dbfc893186f5d5444340bba135389

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.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.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5eed0a09a163f3a8125a857cb031be87ed052e4a47bc75085ed7fca786e9bb5b
MD5 53d64f23b862da77416c5b56fbfe4125
BLAKE2b-256 d8090822403f40932a165a4f1df289d41653683019e4fd7a86b63ed20e9b6177

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 142178fe981061f1d2a57c5348f2cd31a3b6397a35593e7a17dbda817b793a7f
MD5 961333f2c57c29758ec9bb673c4de962
BLAKE2b-256 e5bd064f6fdb61db3d2c473159ebc844243e650dc032de0f8208443a00127925

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d833fc23aa3cc2e05aeffc7cfadd87b796654ad3a7fb214555cda3f1db2d4dc2
MD5 3e2cede34e0d741a56159293a8aa485c
BLAKE2b-256 eb864052473217bd954ccdffda5f7264a0e99e7c4ecf70c0f729845c6a45fc5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1df583adc0ae84a8d13d7139f42eade6d90182b1dd3e0d28f7df3c564b9fd55d
MD5 75dadfb3d547e872fd24844db7fc6fe6
BLAKE2b-256 6f3e2667c0ddb53ddf28667e330bf9fe92e8e17705a481c9b698e283120565f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 cbc6193acd21f96760c94dd71bf32b161223e8503f5277acb0a5ab54e5598957
MD5 7eb4d64f894dcdd21dba4dc7ebd68e78
BLAKE2b-256 bd00b67ba053a7d6f6dbe2f8a704b7d3a5e01b1d2e2e8edbc9b634f2702ef73c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0e71e83e46154a9d3ced6d4de9a2fea8207ee1e4832aeecf364dc125eda305c
MD5 d8f48eaf565536ff587ddcac3e1b1aeb
BLAKE2b-256 000d3db362169d80442adda9dd563c4f0bb10091c8c1c9a158037f4ecd53988e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 249f90b39d3741c48620021a968b35f268ca70e35f555abeea9ff95a451f35f9
MD5 fc431f8e2dae570761fe8834516a46a1
BLAKE2b-256 ac28ed31a0e35feb4538a996348362051b52912d50f00d25c2d388eccef9242c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 df8473cb117e1316e6c6101f2724e025bd8f50af2dc009d0001c0aabfb5eb57c
MD5 b8e2ffa13e30ad18be371f4df5374391
BLAKE2b-256 c55dfa67e8174f54db44eb33498abb7f98bea4f2329e873b225391bda0113a5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 43a9fea6299c801da85221e387b32d90a9ad7c62aa2a34edf525359ce5ad8f3a
MD5 92bc7723b3536603257421253aeb08ca
BLAKE2b-256 557c2e9c80f08375bd14262cefa69297a926134f517c9955c0795eec5e1d470e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: backports_zstd-1.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 288.6 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.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 845defdb172385f17123d92a00d2e952d341e9ae310bfa2410c292bf03846034
MD5 c348c6c8acafb03ed6d516dcad8b3e65
BLAKE2b-256 c29ecdd1d2e1d3612bb90d9cf9b23bea06f2155cdafccd8b6f28a1c4d7750004

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b9a8c75a294e7ffa18fc8425a763facc366435a8b442e4dffdc19fa9499a22c
MD5 f4cb2523537f1e991c1bbd4f45b52ac5
BLAKE2b-256 dc32018e49657411582569032b7d1bb5d62e514aad8b44952de740ec6250588d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3180c8eb085396928e9946167e610aa625922b82c3e2263c5f17000556370168
MD5 c028dea06c8cd8059264aceacee5aa57
BLAKE2b-256 9342126b2bc7540a15452c3ebdf190ebfea8a8644e29b22f4e10e2a6aa2389e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2c662912cfc1a5ebd1d2162ac651549d58bd3c97a8096130ec13c703fca355f2
MD5 8cfa37d462a1dac6269f52f7a5ed5bdf
BLAKE2b-256 95c01a0d245325827242aefe76f4f3477ec183b996b8db5105698564f8303481

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 01c699d8c803dc9f9c9d6ede21b75ec99f45c3b411821011692befca538928cb
MD5 fcc8075112ffc5f70f2526b2b6903f6f
BLAKE2b-256 d3bbe429156e4b834837fe78b4f32ed512491aea39415444420c79ccd3aa0526

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0290979eea67f7275fa42d5859cc5bea94f2c08cca6bc36396673476773d2bad
MD5 58ce2c3ef3d18da393bfca2c9570307d
BLAKE2b-256 bacde50dd85fde890c5d79e1ed5dc241f1c45f87b6c12571fdb60add57f2ee66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 481b586291ef02a250f03d4c31a37c9881e5e93556568abbd20ca1ad720d443f
MD5 f0426c39c10712f7790b7e582eb76dcb
BLAKE2b-256 1a81df23d3fe664b2497ab2ec01dc012cb9304e7d568c67f50b1b324fb2d8cbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp310-cp310-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 04def169e4a9ae291298124da4e097c6d6545d0e93164f934b716da04d24630a
MD5 b8a038314703c6c09e9f1dcd4ecff525
BLAKE2b-256 ccdd17a752263fccd1ba24184b7e89c14cd31553d512e2e5b065f38e63a0ba86

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.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.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 116f65cce84e215dfac0414924b051faf8d29dc7188cf3944dd1e5be8dd15a32
MD5 d951dfcac5824f9d3b7332786b205d27
BLAKE2b-256 0ed85b8580469e70b72402212885bf19b9d31eaf23549b602e0c294edf380e25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6f3115d203f387f77c23b5461fb6678d282d4f276f9f39298ad242b00120afc7
MD5 ab5d5ceaa66efef9d2fdf835186f7788
BLAKE2b-256 0dca7fe70d2d39ed39e26a6c6f6c1dd229f1ab889500d5c90b17527702b1a21e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ab139d1fc0e91a697e82fa834e6404098802f11b6035607174776173ded9a2cc
MD5 778c02342827b4ddbd4be98e17079dcd
BLAKE2b-256 2048d9c8c8c2a5ac57fc5697f1945254af31407b0c5f80335a175a7c215b4118

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8410fda08b36202d01ab4503f6787c763898888cb1a48c19fce94711563d3ee3
MD5 04fc20c75d87440865e1c9444a43e3a7
BLAKE2b-256 b7dc96dc55c043b0d86e53ae9608b496196936244c1ecf7e95cdf66d0dbc0f23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1124a169a647671ccb4654a0ef1d0b42d6735c45ce3d0adf609df22fb1f099db
MD5 2d640517193ffc166766515a5f10e9cf
BLAKE2b-256 689ecad0f508ed7c3fbd07398f22b5bf25aa0523fcf56c84c3def642909e80ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7f16b98ba81780a9517ce6c493e1aea9b7d72de2b1efa08375136c270e1ecba
MD5 64b8f6cc5651fddd1ce3ea12c9956297
BLAKE2b-256 55f87b3fad9c6ee5ff3bcd7c941586675007330197ff4a388f01c73198ecc8bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a2db17a6d9bf6b4dc223b3f6414aa9db6d1afe9de9bff61d582c2934ca456a0
MD5 846894443d6b862fc395442489cd6d3c
BLAKE2b-256 7670766f6ebbb9db2ed75951f0a671ee15931dc69278c84d9f09b08dd6b67c3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.0-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 3895857d06ba58a2bea21019843bc53b0b4df1ce64b55a184c5fb6236b798947
MD5 20d2822ff0aa44a5349bdb035bf38aa0
BLAKE2b-256 7b26a78b0a44956ba713a3ce453424945ffbc9654d7e270c448b7e7f4d0efa64

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f5fca92a20e6ef22702914237c4f99f50d5450941529100ef3f5351f5e1e9eb6
MD5 19dc9873ff305a764bcfe75fb1802cbc
BLAKE2b-256 dd64d7667ce008cb1ee3d2af765f947f49527ad8e2634c706f1f76edafb6bb43

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: backports_zstd-1.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 288.6 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.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 975ba1c52200f8d01adf66ea4c353da8e0f967687406ac1bf1d9051a088242fe
MD5 454f914c81ce2cce09314faf55ab2d61
BLAKE2b-256 eb5ef11b44b10bcec6a040e196ec5daed9084aafaefedb754fd2c6e1eaa851d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6d7aa2caa38b9e0d68004f0618290a4e4b0eb26afc482bd5e5c5fba6e40fd94
MD5 1985c4457e4c84aff75cc1029bdeb7cb
BLAKE2b-256 60b1ac4f86a49fbd79cc4e598c2dd6417749286c03af5f696217e127127317b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 79efb1ddb7d22e3eabdee8ab9fb0020fce951dafcac787fdb7ec2d2cbc4f170a
MD5 f0d5bba175093d52a8a0315954ad7afd
BLAKE2b-256 9031e447cb83f0918ca782054dc1ea4ba1a9dfdeddcad24b76bd42831ce097fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.0-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3ddebc1b6f8a37d63cdf18bf98854c62ff2710aeba7057cb5d2bda58c885bbd2
MD5 8faf9e6161f8aed733d52f04e0343be8
BLAKE2b-256 074ff97ef97602a84af0a0cb500c3a3a30b44455ee43168f124f0498aa2fc383

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 88961d8c5760a4febeba78d2cdff2e380a05d18cbc2089d985684fc3d6b3b836
MD5 ec7bf6dfc8c3aeeb72c8c7a99db9fd4d
BLAKE2b-256 ee0c3907ec7d8cb5b732414839ee8c59868388b8baec67cd84d22f08264854ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 102392989442094f3cf1a4bf01fdd4db746d0e755341888998ffbbffdf76a207
MD5 bb1fca3c6c7b54333881b7c62171e369
BLAKE2b-256 44c77ceb36c1521f652b0612d258e18fa07e46d898b80f1e0ca00cb74003f0f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f215062302f450ac61ff23991ee6619f07add6c20e1f4659bf9a500b37fc7c2
MD5 b81b39e2c01e1434a2d477cb3a1b8244
BLAKE2b-256 3bb596de51da82bdf2494b9919ce50b9b5acd4a19dde8a6e23d0358b39c62c67

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.0-cp39-cp39-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp39-cp39-manylinux_2_34_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 472f590cf3270d79dae699c9641db9400e794a7ebe8574da7edc3ca3abf342cc
MD5 bcaf5cfabd33fccf88bcb6a6b65006be
BLAKE2b-256 88722a2b2af466536fef2a88121fa2fb46044a5468cc4990e101c50b325cab81

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.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.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59b52ad18326c0f9473906de3caf47ade68a063dcbe1663b0351638421fd5458
MD5 6c1d9f88fe9ebc677af56165220d6260
BLAKE2b-256 0dd70c768e2bc567f0fa957bd22d09f6432dc7eda724b1e678ef607e885257d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 82332651e737b16025397af59405a355e354254483fa93c585613d314c7ac199
MD5 6c5fd2e1ff6c6e2e86119f160ed4afc9
BLAKE2b-256 a5082f1a34a7f58e5569395d918a02c758471e0e7444d65b0d2b51812dde7e02

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c3d777a0cacca20fa8ea3a24178e7cae872fcec26cc84ebe3250b374f9127a21
MD5 af4c021b4344a6f561c05e462d2422f8
BLAKE2b-256 beab28843af0fe2071e5919b0537d8d6f0ab9fc085f42eb7dd18c072ad623698

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9d75cca9bed9da91c6e8bfdd4807fc1af08c8b25716cfdc5d50c119071641cf
MD5 bb83de601b210035d8dac6a791d88d4f
BLAKE2b-256 99dec982128be9c8120de11bab5855e7b2a1dc1a359299d83bc29c0098a3dcfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 78693e344544bceddc6f475873e2353b5990d74a836b4f1b8a182e1c55c8ae05
MD5 25e6d7c22754ab0f3101c79ee79e40a7
BLAKE2b-256 e43163b95681afbb3494a15d3ccc423a5f424903703a036f092132dc33c6c7e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef2a0bfb7aa590134ef43479cda439de054d5503b1be4756aca0afa9181cc3a5
MD5 5b7e62154fcb417f37e3f0b47895c718
BLAKE2b-256 f82ce3ad4bd68a2afece198f0988bed435e43c07dee676e3c2e9c757fb5b50f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for backports_zstd-1.3.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.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for backports_zstd-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cab7dc828e19d8871935f3061e0550713aacb230fc3a3919bed0440a1295c255
MD5 7319eb63c5a7606a7e9e90fe3aa93718
BLAKE2b-256 2afb032cc09ae4764de00e71962175f8e89e10dbf1abf5275bcc0f32192de6c2

See more details on using hashes here.

Provenance

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