Skip to main content

Python bindings to Rust's persistent data structures (rpds)

Project description

PyPI version Supported Python versions Build status

Python bindings to the Rust rpds crate for persistent data structures.

What’s here is quite minimal (in transparency, it was written initially to support replacing pyrsistent in the referencing library). If you see something missing (which is very likely), a PR is definitely welcome to add it.

Installation

The distribution on PyPI is named rpds.py (equivalently rpds-py), and thus can be installed via e.g.:

$ pip install rpds-py

Note that if you install rpds-py from source, you will need a Rust toolchain installed, as it is a build-time dependency. An example of how to do so in a Dockerfile can be found here.

If you believe you are on a common platform which should have wheels built (i.e. and not need to compile from source), feel free to file an issue or pull request modifying the GitHub action used here to build wheels via maturin.

Usage

Methods in general are named similarly to their rpds counterparts (rather than pyrsistent‘s conventions, though probably a full drop-in pyrsistent-compatible wrapper module is a good addition at some point).

>>> from rpds import HashTrieMap, HashTrieSet, List

>>> m = HashTrieMap({"foo": "bar", "baz": "quux"})
>>> m.insert("spam", 37) == HashTrieMap({"foo": "bar", "baz": "quux", "spam": 37})
True
>>> m.remove("foo") == HashTrieMap({"baz": "quux"})
True

>>> s = HashTrieSet({"foo", "bar", "baz", "quux"})
>>> s.insert("spam") == HashTrieSet({"foo", "bar", "baz", "quux", "spam"})
True
>>> s.remove("foo") == HashTrieSet({"bar", "baz", "quux"})
True

>>> L = List([1, 3, 5])
>>> L.push_front(-1) == List([-1, 1, 3, 5])
True
>>> L.rest == List([3, 5])
True

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rpds_py-0.29.0.tar.gz (69.4 kB view details)

Uploaded Source

Built Distributions

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

rpds_py-0.29.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (564.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rpds_py-0.29.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (601.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rpds_py-0.29.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (575.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl (408.6 kB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (394.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (413.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (529.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (407.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (393.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (426.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rpds_py-0.29.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (364.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rpds_py-0.29.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (374.0 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

rpds_py-0.29.0-cp314-cp314t-win_amd64.whl (225.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

rpds_py-0.29.0-cp314-cp314t-win32.whl (211.4 kB view details)

Uploaded CPython 3.14tWindows x86

rpds_py-0.29.0-cp314-cp314t-musllinux_1_2_x86_64.whl (557.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rpds_py-0.29.0-cp314-cp314t-musllinux_1_2_i686.whl (594.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rpds_py-0.29.0-cp314-cp314t-musllinux_1_2_aarch64.whl (566.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rpds_py-0.29.0-cp314-cp314t-manylinux_2_31_riscv64.whl (399.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (409.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (520.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (394.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rpds_py-0.29.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (416.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

rpds_py-0.29.0-cp314-cp314t-macosx_11_0_arm64.whl (355.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rpds_py-0.29.0-cp314-cp314t-macosx_10_12_x86_64.whl (366.4 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

rpds_py-0.29.0-cp314-cp314-win_arm64.whl (222.0 kB view details)

Uploaded CPython 3.14Windows ARM64

rpds_py-0.29.0-cp314-cp314-win_amd64.whl (228.1 kB view details)

Uploaded CPython 3.14Windows x86-64

rpds_py-0.29.0-cp314-cp314-win32.whl (215.5 kB view details)

Uploaded CPython 3.14Windows x86

rpds_py-0.29.0-cp314-cp314-musllinux_1_2_x86_64.whl (554.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rpds_py-0.29.0-cp314-cp314-musllinux_1_2_i686.whl (593.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rpds_py-0.29.0-cp314-cp314-musllinux_1_2_aarch64.whl (567.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rpds_py-0.29.0-cp314-cp314-manylinux_2_31_riscv64.whl (400.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

rpds_py-0.29.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rpds_py-0.29.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (409.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

rpds_py-0.29.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (517.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

rpds_py-0.29.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (396.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

rpds_py-0.29.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rpds_py-0.29.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (417.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

rpds_py-0.29.0-cp314-cp314-macosx_11_0_arm64.whl (354.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rpds_py-0.29.0-cp314-cp314-macosx_10_12_x86_64.whl (363.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rpds_py-0.29.0-cp313-cp313t-win_amd64.whl (225.2 kB view details)

Uploaded CPython 3.13tWindows x86-64

rpds_py-0.29.0-cp313-cp313t-win32.whl (211.2 kB view details)

Uploaded CPython 3.13tWindows x86

rpds_py-0.29.0-cp313-cp313t-musllinux_1_2_x86_64.whl (557.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rpds_py-0.29.0-cp313-cp313t-musllinux_1_2_i686.whl (592.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rpds_py-0.29.0-cp313-cp313t-musllinux_1_2_aarch64.whl (566.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rpds_py-0.29.0-cp313-cp313t-manylinux_2_31_riscv64.whl (398.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.31+ riscv64

rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (385.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (409.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (520.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (394.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rpds_py-0.29.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (416.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

rpds_py-0.29.0-cp313-cp313t-macosx_11_0_arm64.whl (355.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

rpds_py-0.29.0-cp313-cp313t-macosx_10_12_x86_64.whl (365.9 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

rpds_py-0.29.0-cp313-cp313-win_arm64.whl (230.0 kB view details)

Uploaded CPython 3.13Windows ARM64

rpds_py-0.29.0-cp313-cp313-win_amd64.whl (239.8 kB view details)

Uploaded CPython 3.13Windows x86-64

rpds_py-0.29.0-cp313-cp313-win32.whl (223.1 kB view details)

Uploaded CPython 3.13Windows x86

rpds_py-0.29.0-cp313-cp313-musllinux_1_2_x86_64.whl (564.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rpds_py-0.29.0-cp313-cp313-musllinux_1_2_i686.whl (600.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rpds_py-0.29.0-cp313-cp313-musllinux_1_2_aarch64.whl (573.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rpds_py-0.29.0-cp313-cp313-manylinux_2_31_riscv64.whl (410.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

rpds_py-0.29.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rpds_py-0.29.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (416.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rpds_py-0.29.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (516.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rpds_py-0.29.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (409.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rpds_py-0.29.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (391.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rpds_py-0.29.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (424.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rpds_py-0.29.0-cp313-cp313-macosx_11_0_arm64.whl (360.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rpds_py-0.29.0-cp313-cp313-macosx_10_12_x86_64.whl (375.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rpds_py-0.29.0-cp312-cp312-win_arm64.whl (230.3 kB view details)

Uploaded CPython 3.12Windows ARM64

rpds_py-0.29.0-cp312-cp312-win_amd64.whl (239.9 kB view details)

Uploaded CPython 3.12Windows x86-64

rpds_py-0.29.0-cp312-cp312-win32.whl (223.9 kB view details)

Uploaded CPython 3.12Windows x86

rpds_py-0.29.0-cp312-cp312-musllinux_1_2_x86_64.whl (564.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rpds_py-0.29.0-cp312-cp312-musllinux_1_2_i686.whl (601.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rpds_py-0.29.0-cp312-cp312-musllinux_1_2_aarch64.whl (574.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rpds_py-0.29.0-cp312-cp312-manylinux_2_31_riscv64.whl (410.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

rpds_py-0.29.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rpds_py-0.29.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (416.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rpds_py-0.29.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (515.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rpds_py-0.29.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (410.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rpds_py-0.29.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (392.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rpds_py-0.29.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (425.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rpds_py-0.29.0-cp312-cp312-macosx_11_0_arm64.whl (360.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rpds_py-0.29.0-cp312-cp312-macosx_10_12_x86_64.whl (376.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rpds_py-0.29.0-cp311-cp311-win_arm64.whl (229.2 kB view details)

Uploaded CPython 3.11Windows ARM64

rpds_py-0.29.0-cp311-cp311-win_amd64.whl (235.7 kB view details)

Uploaded CPython 3.11Windows x86-64

rpds_py-0.29.0-cp311-cp311-win32.whl (221.4 kB view details)

Uploaded CPython 3.11Windows x86

rpds_py-0.29.0-cp311-cp311-musllinux_1_2_x86_64.whl (562.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rpds_py-0.29.0-cp311-cp311-musllinux_1_2_i686.whl (600.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rpds_py-0.29.0-cp311-cp311-musllinux_1_2_aarch64.whl (574.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rpds_py-0.29.0-cp311-cp311-manylinux_2_31_riscv64.whl (406.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

rpds_py-0.29.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (392.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rpds_py-0.29.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (412.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rpds_py-0.29.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (527.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rpds_py-0.29.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (405.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rpds_py-0.29.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (391.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rpds_py-0.29.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (423.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rpds_py-0.29.0-cp311-cp311-macosx_11_0_arm64.whl (363.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rpds_py-0.29.0-cp311-cp311-macosx_10_12_x86_64.whl (372.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rpds_py-0.29.0-cp310-cp310-win_amd64.whl (235.5 kB view details)

Uploaded CPython 3.10Windows x86-64

rpds_py-0.29.0-cp310-cp310-win32.whl (221.8 kB view details)

Uploaded CPython 3.10Windows x86

rpds_py-0.29.0-cp310-cp310-musllinux_1_2_x86_64.whl (562.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rpds_py-0.29.0-cp310-cp310-musllinux_1_2_i686.whl (600.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rpds_py-0.29.0-cp310-cp310-musllinux_1_2_aarch64.whl (574.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rpds_py-0.29.0-cp310-cp310-manylinux_2_31_riscv64.whl (406.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

rpds_py-0.29.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (392.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rpds_py-0.29.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (412.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rpds_py-0.29.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (527.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rpds_py-0.29.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (405.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rpds_py-0.29.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (391.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rpds_py-0.29.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (423.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

rpds_py-0.29.0-cp310-cp310-macosx_11_0_arm64.whl (362.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rpds_py-0.29.0-cp310-cp310-macosx_10_12_x86_64.whl (372.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file rpds_py-0.29.0.tar.gz.

File metadata

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

File hashes

Hashes for rpds_py-0.29.0.tar.gz
Algorithm Hash digest
SHA256 fe55fe686908f50154d1dc599232016e50c243b438c3b7432f24e2895b0e5359
MD5 4e48e60ef433f27898277dff1b9fa9eb
BLAKE2b-256 983323b3b3419b6a3e0f559c7c0d2ca8fc1b9448382b25245033788785921332

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0.tar.gz:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7728653900035fb7b8d06e1e5900545d8088efc9d5d4545782da7df03ec803f
MD5 d9a250e89bdc4570d055e9bd498c83c5
BLAKE2b-256 87f409ffb3ebd0cbb9e2c7c9b84d252557ecf434cd71584ee1e32f66013824df

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ea962671af5cb9a260489e311fa22b2e97103e3f9f0caaea6f81390af96a9ed
MD5 3304ff19ebca0f813f2b74c681c4260f
BLAKE2b-256 eac0df88097e64339a0218b57bd5f9ca49898e4c394db756c67fccc64add850a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f84c549746a5be3bc7415830747a3a0312573afc9f95785eb35228bb17742ec
MD5 01d2304f95394568186a0596b3a4e0c8
BLAKE2b-256 a2e0cf95478881fc88ca2fdbf56381d7df36567cccc39a05394beac72182cd62

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ea7173df5d86f625f8dde6d5929629ad811ed8decda3b60ae603903839ac9ac0
MD5 1839107f80159a54e58ca84f83e9e6ae
BLAKE2b-256 37f1dc9312fc9bec040ece08396429f2bd9e0977924ba7a11c5ad7056428465e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80fdf53d36e6c72819993e35d1ebeeb8e8fc688d0c6c2b391b55e335b3afba5a
MD5 be85d15f459b3c17623703d438ac72d8
BLAKE2b-256 aa0a60f98b06156ea2a7af849fb148e00fbcfdb540909a5174a5ed10c93745c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3fbd4e9aebf110473a420dea85a238b254cf8a15acb04b22a5a6b5ce8925b760
MD5 5abb3c300f5d5a3024708729384ac662
BLAKE2b-256 fac101dd5f444233605555bc11fe5fed6a5c18f379f02013870c176c8e630a23

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b8e54d6e61f3ecd3abe032065ce83ea63417a24f437e4a3d73d2f85ce7b7cfe
MD5 eea9da75ff55db091fc320f46c27a0cb
BLAKE2b-256 f0570546c6f84031b7ea08b76646a8e33e45607cc6bd879ff1917dc077bb881e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c3c3e8101bb06e337c88eb0c0ede3187131f19d97d43ea0e1c5407ea74c0cbf
MD5 1e1f0c990b58790c808c90dc5e6e3993
BLAKE2b-256 1cb8c5692a7df577b3c0c7faed7ac01ee3c608b81750fc5d89f84529229b6873

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3b1b87a237cb2dba4db18bcfaaa44ba4cd5936b91121b62292ff21df577fc43
MD5 9c8cf138e50c58c8eb8dfeb9f6e188dd
BLAKE2b-256 992a6b6524d0191b7fc1351c3c0840baac42250515afb48ae40c7ed15499a6a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 76054d540061eda273274f3d13a21a4abdde90e13eaefdc205db37c05230efce
MD5 be34eb80a39a9f973497d20105752890
BLAKE2b-256 ed4165024c9fd40c89bb7d604cf73beda4cbdbcebe92d8765345dd65855b6449

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 715b67eac317bf1c7657508170a3e011a1ea6ccb1c9d5f296e20ba14196be6b3
MD5 9d9631bdcd71df380c9c1809e28fb050
BLAKE2b-256 405a55e72962d5d29bd912f40c594e68880d3c7a52774b0f75542775f9250712

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 acd82a9e39082dc5f4492d15a6b6c8599aa21db5c35aaf7d6889aea16502c07d
MD5 aaa2160697026a9c30892933920b11fe
BLAKE2b-256 f2acb97e80bf107159e5b9ba9c91df1ab95f69e5e41b435f27bdd737f0d583ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 225.9 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2023473f444752f0f82a58dfcbee040d0a1b3d1b3c2ec40e884bd25db6d117d2
MD5 9b8ed7ad1234e9c0df3bb61aed1ea1be
BLAKE2b-256 c97f1a65ae870bc9d0576aebb0c501ea5dccf1ae2178fe2821042150ebd2e707

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314t-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 211.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 97c817863ffc397f1e6a6e9d2d89fe5408c0a9922dac0329672fb0f35c867ea5
MD5 bf7c6d4edba1545c16b89134cbb01b3a
BLAKE2b-256 e9f8b8ff786f40470462a252918e0836e0db903c28e88e3eec66bc4a7856ee5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314t-win32.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7fa2ccc312bbd91e43aa5e0869e46bc03278a3dddb8d58833150a18b0f0283a
MD5 646c08e6c0c2f375e8e259baed4d4a4b
BLAKE2b-256 4a3deb820f95dce4306f07a495ede02fb61bef36ea201d9137d4fcd5ab94ec1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3919a3bbecee589300ed25000b6944174e07cd20db70552159207b3f4bbb45b8
MD5 36e7af0549b45ff78442bf4ef965e716
BLAKE2b-256 ab320a6a1ccee2e37fcb1b7ba9afde762b77182dbb57937352a729c6cd3cf2bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00e56b12d2199ca96068057e1ae7f9998ab6e99cda82431afafd32f3ec98cca9
MD5 e2536eaf5d7853e86cbe639286272540
BLAKE2b-256 79a5449f0281af33efa29d5c71014399d74842342ae908d8cd38260320167692

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314t-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 c07d107b7316088f1ac0177a7661ca0c6670d443f6fe72e836069025e6266761
MD5 37e76900ecc24175b35cf383f1bab9e9
BLAKE2b-256 4711914ecb6f3574cf9bf8b38aced4063e0f787d6e1eb30b181a7efbc6c1da9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314t-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd7951c964069039acc9d67a8ff1f0a7f34845ae180ca542b17dc1456b1f1808
MD5 45fccbcf51b22627f8507fe97a768c2d
BLAKE2b-256 c9c6dcbee61fd1dc892aedcb1b489ba661313101aa82ec84b1a015d4c63ebfda

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 28de03cf48b8a9e6ec10318f2197b83946ed91e2891f651a109611be4106ac4b
MD5 81b396524e5947f03559771850b1a048
BLAKE2b-256 87b307122ead1b97009715ab9d4082be6d9bd9546099b2b03fae37c3116f72be

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12597d11d97b8f7e376c88929a6e17acb980e234547c92992f9f7c058f1a7310
MD5 21dad0b45cb683848f96ba877320bc85
BLAKE2b-256 c03ff0ade3954e7db95c791e7eaf978aa7e08a756d2046e8bdd04d08146ed188

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c9546cfdd5d45e562cc0444b6dddc191e625c62e866bf567a2c69487c7ad28a
MD5 95dd3bb3ce53cef4084d41387dce24ac
BLAKE2b-256 f47de6bc526b7a14e1ef80579a52c1d4ad39260a058a51d66c6039035d14db9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9459a33f077130dbb2c7c3cea72ee9932271fb3126404ba2a2661e4fe9eb7b79
MD5 fa51dbf4acef7a2c4779239d5aa22fd8
BLAKE2b-256 faa752fd8270e0320b09eaf295766ae81dd175f65394687906709b3e75c71d06

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1de2345af363d25696969befc0c1688a6cb5e8b1d32b515ef84fc245c6cddba3
MD5 cfa89896a210fb1c71a8788fd157edf3
BLAKE2b-256 f5fd2f4bd9433f58f816434bb934313584caa47dbc6f03ce5484df8ac8980561

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76fe96632d53f3bf0ea31ede2f53bbe3540cc2736d4aec3b3801b0458499ef3a
MD5 59a9cde4fab174c5a4188e713547fcd5
BLAKE2b-256 a2a46d43ebe0746ff694a30233f63f454aed1677bd50ab7a59ff6b2bb5ac61f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e71136fd0612556b35c575dc2726ae04a1669e6a6c378f2240312cf5d1a2ab10
MD5 13c85bd1465af272a90798c7dd8d592e
BLAKE2b-256 b1faa2e524631717c9c0eb5d90d30f648cfba6b731047821c994acacb618406c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 222.0 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9ba8028597e824854f0f1733d8b964e914ae3003b22a10c2c664cb6927e0feb9
MD5 2d34ea182029608bd822c5ce6725030c
BLAKE2b-256 be360cec88aaba70ec4a6e381c444b0d916738497d27f0c30406e3d9fcbd3bc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314-win_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 228.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b9cf2359a4fca87cfb6801fae83a76aedf66ee1254a7a151f1341632acf67f1b
MD5 e8676d93379c470bbfa084e63794a581
BLAKE2b-256 7bc71d169b2045512eac019918fc1021ea07c30e84a4343f9f344e3e0aa8c788

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 215.5 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f475f103488312e9bd4000bc890a95955a07b2d0b6e8884aef4be56132adbbf1
MD5 416fd52e66bcf708e5b39e9a731cedca
BLAKE2b-256 0ff1fcc24137c470df8588674a677f33719d5800ec053aaacd1de8a5d5d84d9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314-win32.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb78b3a0d31ac1bde132c67015a809948db751cb4e92cdb3f0b242e430b6ed0d
MD5 00ea2f1b7f712672d98bd992e41ec072
BLAKE2b-256 e2aca0fcbc2feed4241cf26d32268c195eb88ddd4bd862adfc9d4b25edfba535

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c661132ab2fb4eeede2ef69670fd60da5235209874d001a98f1542f31f2a8a94
MD5 35a976f769c3ce33d16a1e0aeb5eebaa
BLAKE2b-256 3bd30c7afdcdb830eee94f5611b64e71354ffe6ac8df82d00c2faf2bfffd1d4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ae33ad9ce580c7a47452c3b3f7d8a9095ef6208e0a0c7e4e2384f9fc5bf8212
MD5 eb337cffdcfdf3b1c82a959df84b2615
BLAKE2b-256 f06928ab391a9968f6c746b2a2db181eaa4d16afaa859fedc9c2f682d19f7e18

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 4aa195e5804d32c682e453b34474f411ca108e4291c6a0f824ebdc30a91c973c
MD5 1532b9f033f043b92cdd5d19075402de
BLAKE2b-256 7511a4ebc9f654293ae9fefb83b2b6be7f3253e85ea42a5db2f77d50ad19aaeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44a91e0ab77bdc0004b43261a4b8cd6d6b451e8d443754cfda830002b5745b32
MD5 9aa0c6f29d470115b9e6ac445bec7de7
BLAKE2b-256 0f7de6543cedfb2e6403a1845710a5ab0e0ccf8fc288e0b5af9a70bfe2c12053

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90f30d15f45048448b8da21c41703b31c61119c06c216a1bf8c245812a0f0c17
MD5 64b9a31db241fd53fc4e9de0977ce629
BLAKE2b-256 d725b11132afcb17cd5d82db173f0c8dab270ffdfaba43e5ce7a591837ae9649

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fcae1770b401167f8b9e1e3f566562e6966ffa9ce63639916248a9e25fa8a244
MD5 c07c848e8d79c5fc87ee6fcd01d00e6d
BLAKE2b-256 700d491c1017d14f62ce7bac07c32768d209a50ec567d76d9f383b4cfad19b80

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c4695dd224212f6105db7ea62197144230b808d6b2bba52238906a2762f1d1e7
MD5 6455d4deea124cb70486193d58d575eb
BLAKE2b-256 c8375db736730662508535221737a21563591b6f43c77f2e388951c42f143242

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc31a07ed352e5462d3ee1b22e89285f4ce97d5266f6d1169da1142e78045626
MD5 9f04d6ff849932ef34f61b2d7f4d79f4
BLAKE2b-256 eb735afcf8924bc02a749416eda64e17ac9c9b28f825f4737385295a0e99b0c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7971bdb7bf4ee0f7e6f67fa4c7fbc6019d9850cc977d126904392d363f6f8318
MD5 25441f11dfa8d48fb5ba79e663512594
BLAKE2b-256 521897677a60a81c7f0e5f64e51fb3f8271c5c8fcabf3a2df18e97af53d7c2bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55d827b2ae95425d3be9bc9a5838b6c29d664924f98146557f7715e331d06df8
MD5 67d4a27ddf847d44ea7a132d574e3b92
BLAKE2b-256 28123b7cf2068d0a334ed1d7b385a9c3c8509f4c2bcba3d4648ea71369de0881

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 394d27e4453d3b4d82bb85665dc1fcf4b0badc30fc84282defed71643b50e1a1
MD5 530cf96461d551c32d616cf705bc3344
BLAKE2b-256 89b10b1474e7899371d9540d3bbb2a499a3427ae1fc39c998563fe9035a1073b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 225.2 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 f49196aec7c4b406495f60e6f947ad71f317a765f956d74bbd83996b9edc0352
MD5 c8d6f7215fdeec73c0959c39bcd0a1f5
BLAKE2b-256 3b3a12dc43f13594a54ea0c9d7e9d43002116557330e3ad45bc56097ddf266e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313t-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313t-win32.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 211.2 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 6e97846e9800a5d0fe7be4d008f0c93d0feeb2700da7b1f7528dabafb31dfadb
MD5 9a9f2bbabb7d0abf29aed5e42d3c3b5b
BLAKE2b-256 ff3b61586475e82d57f01da2c16edb9115a618afe00ce86fe1b58936880b15af

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313t-win32.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f437026dbbc3f08c99cc41a5b2570c6e1a1ddbe48ab19a9b814254128d4ea7a
MD5 15e6514ae55e8bc8fa7204108c10c905
BLAKE2b-256 85ef3109b6584f8c4b0d2490747c916df833c127ecfa82be04d9a40a376f2090

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2aba991e041d031c7939e1358f583ae405a7bf04804ca806b97a5c0e0af1ea5e
MD5 15b4bfac74a43a7e58b536a3f2ff9bf1
BLAKE2b-256 62538c64e0f340a9e801459fc6456821abc15b3582cb5dc3932d48705a9d9ac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28fd300326dd21198f311534bdb6d7e989dd09b3418b3a91d54a0f384c700967
MD5 15dcb337b39a47436d3f53abfd6506bd
BLAKE2b-256 1a930acedfd50ad9cdd3879c615a6dc8c5f1ce78d2fdf8b87727468bb5bb4077

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313t-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 b1581fcde18fcdf42ea2403a16a6b646f8eb1e58d7f90a0ce693da441f76942e
MD5 11d1e06eff77d11345ff032b4a19eb52
BLAKE2b-256 92025546c1c8aa89c18d40c1fcffdcc957ba730dee53fb7c3ca3a46f114761d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313t-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e5bb73ffc029820f4348e9b66b3027493ae00bca6629129cd433fd7a76308ee
MD5 a0727e2da307fe49d310a006f07b0c34
BLAKE2b-256 fa60aa3b8678f3f009f675b99174fa2754302a7fbfe749162e8043d111de2d88

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 115f48170fd4296a33938d8c11f697f5f26e0472e43d28f35624764173a60e4d
MD5 b940ce623eb6fa8d0b63e05e07679040
BLAKE2b-256 98c30d1b95a81affae2b10f950782e33a1fd2edd6ce2a479966cac98c9a66f57

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4448dad428f28a6a767c3e3b80cde3446a22a0efbddaa2360f4bb4dc836d0688
MD5 b235730e86d33b902df3f226250c3bf0
BLAKE2b-256 cc3201e2e9645cef0e584f518cfde4567563e57db2257244632b603f61b40e50

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2549d833abdf8275c901313b9e8ff8fba57e50f6a495035a2a4e30621a2f7cc4
MD5 6825377a9304d84b3f41d909891342fd
BLAKE2b-256 33b853330c50a810ae22b4fbba5e6cf961b68b9d72d9bd6780a7c0a79b070857

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72fdfd5ff8992e4636621826371e3ac5f3e3b8323e9d0e48378e9c13c3dac9d0
MD5 92017465798939308ad30a00edf4b5f1
BLAKE2b-256 3d14bf83e2daa4f980e4dc848aed9299792a8b84af95e12541d9e7562f84a6ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 16e9da2bda9eb17ea318b4c335ec9ac1818e88922cbe03a5743ea0da9ecf74fb
MD5 fd1a487778c6d95fb20b2263aa373e9a
BLAKE2b-256 6ce0ad6eeaf47e236eba052fa34c4073078b9e092bd44da6bbb35aaae9580669

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d472cf73efe5726a067dce63eebe8215b14beabea7c12606fd9994267b3cfe2b
MD5 aa122e0c77698795be2cd02f191f2302
BLAKE2b-256 857c415d8c1b016d5f47ecec5145d9d6d21002d39dce8761b30f6c88810b455a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 37d94eadf764d16b9a04307f2ab1d7af6dc28774bbe0535c9323101e14877b4c
MD5 c621b95525d5a23c88e0964df9659a20
BLAKE2b-256 52915de91c5ec7d41759beec9b251630824dbb8e32d20c3756da1a9a9d309709

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313t-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 230.0 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 56838e1cd9174dc23c5691ee29f1d1be9eab357f27efef6bded1328b23e1ced2
MD5 63341e0708082f1844c8ee1abdd909fc
BLAKE2b-256 e438d2868f058b164f8efd89754d85d7b1c08b454f5c07ac2e6cc2e9bd4bd05b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313-win_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 239.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6410e66f02803600edb0b1889541f4b5cc298a5ccda0ad789cc50ef23b54813e
MD5 dc9d84144b4f57004a5875a6de2a4304
BLAKE2b-256 3c6b0229d3bed4ddaa409e6d90b0ae967ed4380e4bdd0dad6e59b92c17d42457

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 223.1 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 rpds_py-0.29.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 20c51ae86a0bb9accc9ad4e6cdeec58d5ebb7f1b09dd4466331fc65e1766aae7
MD5 6c94199712f0537da943a0ebf2aa6633
BLAKE2b-256 b9fbba29ec7f0f06eb801bac5a23057a9ff7670623b5e8013bd59bec4aa09de8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313-win32.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33ca7bdfedd83339ca55da3a5e1527ee5870d4b8369456b5777b197756f3ca22
MD5 b21e058af3cfe024e3434d4de143fa03
BLAKE2b-256 6c7bb6cfca2f9fee4c4494ce54f7fb1b9f578867495a9aa9fc0d44f5f735c8e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05a2bd42768ea988294ca328206efbcc66e220d2d9b7836ee5712c07ad6340ea
MD5 260558302901b2017f444ab861da361f
BLAKE2b-256 f7b31b1c9576839ff583d1428efbf59f9ee70498d8ce6c0b328ac02f1e470879

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f49d41559cebd608042fdcf54ba597a4a7555b49ad5c1c0c03e0af82692661cd
MD5 91b9aca0202439926d1fb794a6be5d60
BLAKE2b-256 e40bb5647446e991736e6a495ef510e6710df91e880575a586e763baeb0aa770

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 295ce5ac7f0cf69a651ea75c8f76d02a31f98e5698e82a50a5f4d4982fbbae3b
MD5 b56406d5cfb377518710d8638e9f204e
BLAKE2b-256 cdf0c90b671b9031e800ec45112be42ea9f027f94f9ac25faaac8770596a16a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de73e40ebc04dd5d9556f50180395322193a78ec247e637e741c1b954810f295
MD5 44219328440b8dff25c111dc8a2bf540
BLAKE2b-256 b942555b4ee17508beafac135c8b450816ace5a96194ce97fefc49d58e5652ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5cc58aac218826d054c7da7f95821eba94125d88be673ff44267bb89d12a5866
MD5 f425eb4300869632253baf0ec5ed661b
BLAKE2b-256 fcada75e603161e79b7110c647163d130872b271c6b28712c803c65d492100f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6596b93c010d386ae46c9fba9bfc9fc5965fa8228edeac51576299182c2e31c
MD5 2c9d46b7a6e8f6d2c85cf52b5a255487
BLAKE2b-256 5a8da27860dae1c19a6bdc901f90c81f0d581df1943355802961a57cdb5b6cd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d24564a700ef41480a984c5ebed62b74e6ce5860429b98b1fede76049e953e6
MD5 7cf25425b6071e9bfee900a09064fdc4
BLAKE2b-256 fd49e93354258508c50abc15cdcd5fcf7ac4117f67bb6233ad7859f75e7372a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a8896986efaa243ab713c69e6491a4138410f0fe36f2f4c71e18bd5501e8014
MD5 93d70b7bdb2165e35d451065d7487d90
BLAKE2b-256 928aa18c2f4a61b3407e56175f6aab6deacdf9d360191a3d6f38566e1eaf7266

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1ea59b23ea931d494459c8338056fe7d93458c0bf3ecc061cd03916505369d55
MD5 01d842ee670ec5242c5179bc0eaac8fc
BLAKE2b-256 3d809af8b640b81fe21e6f718e9dec36c0b5f670332747243130a5490f292245

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 521807963971a23996ddaf764c682b3e46459b3c58ccd79fefbe16718db43154
MD5 aa352c437315c325c0c5b80c58f58ec4
BLAKE2b-256 b3b30860cdd012291dc21272895ce107f1e98e335509ba986dd83d72658b82b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1585648d0760b88292eecab5181f5651111a69d90eff35d6b78aa32998886a61
MD5 1d8f3b2451ec61b8aef06c2416ab13b3
BLAKE2b-256 fdd9c5de60d9d371bbb186c3e9bf75f4fc5665e11117a25a06a6b2e0afb7380e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 230.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.29.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b016eddf00dca7944721bf0cd85b6af7f6c4efaf83ee0b37c4133bd39757a8c7
MD5 ae1b2b1fde638c0b8e155cde0be0f1b6
BLAKE2b-256 d1d48bce56cdad1ab873e3f27cb31c6a51d8f384d66b022b820525b879f8bed1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp312-cp312-win_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 239.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.29.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b5f6134faf54b3cb83375db0f113506f8b7770785be1f95a631e7e2892101977
MD5 ced79ad9eba9cde6ad49d94ec9878f05
BLAKE2b-256 1f6a51e9aeb444a00cdc520b032a28b07e5f8dc7bc328b57760c53e7f96997b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 223.9 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 rpds_py-0.29.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ba5e1aeaf8dd6d8f6caba1f5539cddda87d511331714b7b5fc908b6cfc3636b7
MD5 66fd06f690051eaa6c5931f8e9ee739a
BLAKE2b-256 b3130494cecce4848f68501e0a229432620b4b57022388b071eeff95f3e1e75b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp312-cp312-win32.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c5a8ecaa44ce2d8d9d20a68a2483a74c07f05d72e94a4dff88906c8807e77b0
MD5 a67270bcf0b8d813a9db0fafdc8a2f36
BLAKE2b-256 f4b1c56f6a9ab8c5f6bb5c65c4b5f8229167a3a525245b0773f2c0896686b64e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc935f6b20b0c9f919a8ff024739174522abd331978f750a74bb68abd117bd19
MD5 8d9f787c62ab7c29d590ac78ad9cb87c
BLAKE2b-256 8ccf474a005ea4ea9c3b4f17b6108b6b13cebfc98ebaff11d6e1b193204b3a93

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 070befbb868f257d24c3bb350dbd6e2f645e83731f31264b19d7231dd5c396c7
MD5 5757a1a4852293a185a1faf8d719d9ba
BLAKE2b-256 85684e24a34189751ceb6d66b28f18159922828dd84155876551f7ca5b25f14f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp312-cp312-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 5a572911cd053137bbff8e3a52d31c5d2dba51d3a67ad902629c70185f3f2181
MD5 ec4fb66c58d8bde7c7e581486bf662d0
BLAKE2b-256 3460869f3bfbf8ed7b54f1ad9a5543e0fdffdd40b5a8f587fe300ee7b4f19340

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp312-cp312-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad7bd570be92695d89285a4b373006930715b78d96449f686af422debb4d3949
MD5 08b7ece1569853828016f71d7d5a03fd
BLAKE2b-256 044cf9b8a05faca3d9e0a6397c90d13acb9307c9792b2bff621430c58b1d6e76

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 def48ff59f181130f1a2cb7c517d16328efac3ec03951cca40c1dc2049747e83
MD5 44d101886a91a18abc3cb132392e0ed1
BLAKE2b-256 8356a8412aa464fb151f8bc0d91fb0bb888adc9039bd41c1c6ba8d94990d8cf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 40f65470919dc189c833e86b2c4bd21bd355f98436a2cef9e0a9a92aebc8e57e
MD5 b4adf7174ebb25345038023d1b601486
BLAKE2b-256 2f6c04f27f0c9f2299274c76612ac9d2c36c5048bb2c6c2e52c38c60bf3868d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9efe71687d6427737a0a2de9ca1c0a216510e6cd08925c44162be23ed7bed2d5
MD5 065af3e5927ca2abf24e07e3f246eef5
BLAKE2b-256 8fb1e18aa3a331f705467a48d0296778dc1fea9d7f6cf675bd261f9a846c7e90

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a21deb8e0d1571508c6491ce5ea5e25669b1dd4adf1c9d64b6314842f708b5d
MD5 610043c7b6dc47e6d28637f546496009
BLAKE2b-256 75ba411d414ed99ea1afdd185bbabeeaac00624bd1e4b22840b5e9967ade6337

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d583d4403bcbf10cffc3ab5cee23d7643fcc960dff85973fd3c2d6c86e8dbb0c
MD5 05750e6f4e4ba0558fbb340378628945
BLAKE2b-256 91aae5b496334e3aba4fe4c8a80187b89f3c1294c5c36f2a926da74338fa5a73

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3897924d3f9a0361472d884051f9a2460358f9a45b1d85a39a158d2f8f1ad71c
MD5 a37808071b8135a2986b78568575e9bb
BLAKE2b-256 3e3a46676277160f014ae95f24de53bed0e3b7ea66c235e7de0b9df7bd5d68ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a0891cfd8db43e085c0ab93ab7e9b0c8fee84780d436d3b266b113e51e79f954
MD5 db9ca198c146f4cf6a23b1226e780c7c
BLAKE2b-256 3c50bc0e6e736d94e420df79be4deb5c9476b63165c87bb8f19ef75d100d21b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 229.2 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.29.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 bdb67151ea81fcf02d8f494703fb728d4d34d24556cbff5f417d74f6f5792e7c
MD5 0458a5e0ea025a819836660920547693
BLAKE2b-256 a71fdf3c56219523947b1be402fa12e6323fe6d61d883cf35d6cb5d5bb6db9d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp311-cp311-win_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 235.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.29.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 539eb77eb043afcc45314d1be09ea6d6cafb3addc73e0547c171c6d636957f60
MD5 bcea2dff0d7bd6ebe88cd937f4d242e0
BLAKE2b-256 7ea5a8b21c54c7d234efdc83dc034a4d7cd9668e3613b6316876a29b49dece71

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 221.4 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 rpds_py-0.29.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 923248a56dd8d158389a28934f6f69ebf89f218ef96a6b216a9be6861804d3f4
MD5 d74b34e7b4b0130d9d684ffc2a077cb6
BLAKE2b-256 40f08c01aaedc0fa92156f0391f39ea93b5952bc0ec56b897763858f95da8168

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp311-cp311-win32.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a110e14508fd26fd2e472bb541f37c209409876ba601cf57e739e87d8a53cf95
MD5 fc561e2ab0c4037950b6462fbfecdc77
BLAKE2b-256 030996983d48c8cf5a1e03c7d9cc1f4b48266adfb858ae48c7c2ce978dbba349

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a738f2da2f565989401bd6fd0b15990a4d1523c6d7fe83f300b7e7d17212feca
MD5 9459cbe08088af8d019c6e7c81369103
BLAKE2b-256 64ba071ccdd7b171e727a6ae079f02c26f75790b41555f12ca8f1151336d2124

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d456e64724a075441e4ed648d7f154dc62e9aabff29bcdf723d0c00e9e1d352f
MD5 6e635a557606ed80c353de2cec2d2940
BLAKE2b-256 a17b4551510803b582fa4abbc8645441a2d15aa0c962c3b21ebb380b7e74f6a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp311-cp311-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 2d6fb2ad1c36f91c4646989811e84b1ea5e0c3cf9690b826b6e32b7965853a63
MD5 487b81f40ab23f88ca3982ae0393909c
BLAKE2b-256 14cdceea6147acd3bd1fd028d1975228f08ff19d62098078d5ec3eed49703797

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp311-cp311-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8238d1d310283e87376c12f658b61e1ee23a14c0e54c7c0ce953efdbdc72deed
MD5 45b628272a1ec353937f9a115ba6b0e9
BLAKE2b-256 2fe22293f236e887c0360c2723d90c00d48dee296406994d6271faf1712e94ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a5d9da3ff5af1ca1249b1adb8ef0573b94c76e6ae880ba1852f033bf429d4588
MD5 3bab07fcb6ac3d37c8362999216df953
BLAKE2b-256 8df7aee14dc2db61bb2ae1e3068f134ca9da5f28c586120889a70ff504bb026f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89ca2e673ddd5bde9b386da9a0aac0cab0e76f40c8f0aaf0d6311b6bbf2aa311
MD5 6b949debbde821e9acabf238f76968b9
BLAKE2b-256 c2e26d7d6941ca0843609fd2d72c966a438d6f22617baf22d46c3d2156c31350

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7cdc0490374e31cedefefaa1520d5fe38e82fde8748cbc926e7284574c714d6b
MD5 a28ac59128306310d3e5ab814206babd
BLAKE2b-256 50c97616d3ace4e6731aeb6e3cd85123e03aec58e439044e214b9c5c60fd8eb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a097b7f7f7274164566ae90a221fd725363c0e9d243e2e9ed43d195ccc5495c
MD5 c9da3f1e8902a00d447798b6dd9f3541
BLAKE2b-256 e3e94d044a1662608c47a87cbb37b999d4d5af54c6d6ebdda93a4d8bbf8b2a10

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 534dc9df211387547267ccdb42253aa30527482acb38dd9b21c5c115d66a96d2
MD5 1d41e97d96546023acf6f09af00d6f04
BLAKE2b-256 5236fe4dead19e45eb77a0524acfdbf51e6cda597b26fc5b6dddbff55fbbb1a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fd2164d73812026ce970d44c3ebd51e019d2a26a4425a5dcbdfa93a34abc383
MD5 3a72bea49e400122441af1ff99e08e9b
BLAKE2b-256 b345f3c30084c03b0d0f918cb4c5ae2c20b0a148b51ba2b3f6456765b629bedd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b9c764a11fd637e0322a488560533112837f5334ffeb48b1be20f6d98a7b437
MD5 0be0c9315e052d87357daaa3603bced6
BLAKE2b-256 36ab7fb95163a53ab122c74a7c42d2d2f012819af2cf3deb43fb0d5acf45cc1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rpds_py-0.29.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 235.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rpds_py-0.29.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c5523b0009e7c3c1263471b69d8da1c7d41b3ecb4cb62ef72be206b92040a950
MD5 26e96401434bdf87fccfc8ec06c2148d
BLAKE2b-256 5477b35a8dbdcbeb32505500547cdafaa9f8863e85f8faac50ef34464ec5a256

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for rpds_py-0.29.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1a409b0310a566bfd1be82119891fefbdce615ccc8aa558aff7835c27988cbef
MD5 56c85c38f57b71fde557e4850fa6e1cd
BLAKE2b-256 30584eeddcb0737c6875f3e30c65dc9d7e7a10dfd5779646a990fa602c6d56c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp310-cp310-win32.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24a16cb7163933906c62c272de20ea3c228e4542c8c45c1d7dc2b9913e17369a
MD5 1ecbaee4de3bf2c3c28b377167f1d976
BLAKE2b-256 3598785290e0b7142470735dc1b1f68fb33aae29e5296f062c88396eedf796c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9f436aee28d13b9ad2c764fc273e0457e37c2e61529a07b928346b219fcde3b
MD5 92448930c6a65bdfe134071e0632155c
BLAKE2b-256 8482dc3c32e1f89ecba8a59600d4cd65fe0ad81b6c636ccdbf6cd177fd6a7bac

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0248b19405422573621172ab8e3a1f29141362d13d9f72bafa2e28ea0cdca5a2
MD5 3b627e54149e0969267c1d1a7bfbbfb0
BLAKE2b-256 38e9c435ddb602ced19a80b8277a41371734f33ad3f91cc4ceb4d82596800a3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp310-cp310-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 24a7231493e3c4a4b30138b50cca089a598e52c34cf60b2f35cebf62f274fdea
MD5 1cc9959921a85b693af9ef3b3a10179b
BLAKE2b-256 60433c3b1dcd827e50f2ae28786d846b8a351080d8a69a3b49bc10ae44cc39b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp310-cp310-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 453783477aa4f2d9104c4b59b08c871431647cb7af51b549bbf2d9eb9c827756
MD5 4b8d984bb0b3fd2729278d3ad7b1295f
BLAKE2b-256 f1392f1f3db92888314b50b8f9641f679188bd24b3665a8cb9923b7201ae8011

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 799156ef1f3529ed82c36eb012b5d7a4cf4b6ef556dd7cc192148991d07206ae
MD5 c58683b5e13ee70f2984159600a51333
BLAKE2b-256 dcba6b56d09badeabd95098016d72a437d4a0fd82d4672ce92a7607df5d70a42

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b58f5c77f1af888b5fd1876c9a0d9858f6f88a39c9dd7c073a88e57e577da66d
MD5 1360495e8689c2c5ac3348b71b31d9c4
BLAKE2b-256 1245628b8c15856c3849c3f52ec6dac93c046ed5faeed4a435af03b70525fd29

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 66786c3fb1d8de416a7fa8e1cb1ec6ba0a745b2b0eee42f9b7daa26f1a495545
MD5 5982b18fa8ce72b2d749a5199b1ba90c
BLAKE2b-256 153842a981c3592ef46fbd7e17adbf8730cc5ec87e6aa1770c658c44bbb52960

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d37812c3da8e06f2bb35b3cf10e4a7b68e776a706c13058997238762b4e07f4f
MD5 627079f8db040a7709736387ef6da0d9
BLAKE2b-256 54df7e9c0493a2015d9c82807a2d5f023ea9774e27a4c15b33ef1cdb7456138d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7033c1010b1f57bb44d8067e8c25aa6fa2e944dbf46ccc8c92b25043839c3fd2
MD5 5b434ce1cfe48b8e2853d798e23080b5
BLAKE2b-256 da02bc96021b67f8525e6bcdd68935c4543ada61e1f3dcb067ed037d68b8c6d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d9128ec9d8cecda6f044001fde4fb71ea7c24325336612ef8179091eb9596b9
MD5 ded51e828c78e8074b8261bb146b6cff
BLAKE2b-256 2836531f1eb4d5bed4a9c150f363a7ec4a98d2dc746151bba5473bc38ee85dec

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.29.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.29.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4ae4b88c6617e1b9e5038ab3fccd7bac0842fdda2b703117b2aa99bc85379113
MD5 b3b0ff293aaa3a367ede39fd07627393
BLAKE2b-256 9e7ac5b2ff381b74bc742768e8d870f26babac4ef256ba160bdbf8d57af56461

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.29.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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