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-2026.5.1.tar.gz (64.5 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-2026.5.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (586.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rpds_py-2026.5.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (623.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rpds_py-2026.5.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (557.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rpds_py-2026.5.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl (392.4 kB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

rpds_py-2026.5.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (379.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rpds_py-2026.5.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (394.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rpds_py-2026.5.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (501.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rpds_py-2026.5.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (387.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rpds_py-2026.5.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (381.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rpds_py-2026.5.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (412.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rpds_py-2026.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (350.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rpds_py-2026.5.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (357.2 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

rpds_py-2026.5.1-cp315-cp315t-win_amd64.whl (225.4 kB view details)

Uploaded CPython 3.15tWindows x86-64

rpds_py-2026.5.1-cp315-cp315t-win32.whl (207.9 kB view details)

Uploaded CPython 3.15tWindows x86

rpds_py-2026.5.1-cp315-cp315t-musllinux_1_2_x86_64.whl (581.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

rpds_py-2026.5.1-cp315-cp315t-musllinux_1_2_i686.whl (618.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

rpds_py-2026.5.1-cp315-cp315t-musllinux_1_2_aarch64.whl (551.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

rpds_py-2026.5.1-cp315-cp315t-manylinux_2_31_riscv64.whl (383.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.31+ riscv64

rpds_py-2026.5.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (376.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

rpds_py-2026.5.1-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390x

rpds_py-2026.5.1-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (495.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64le

rpds_py-2026.5.1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (380.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

rpds_py-2026.5.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (374.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

rpds_py-2026.5.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (405.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

rpds_py-2026.5.1-cp315-cp315t-macosx_11_0_arm64.whl (345.0 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

rpds_py-2026.5.1-cp315-cp315t-macosx_10_12_x86_64.whl (352.0 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

rpds_py-2026.5.1-cp315-cp315-win_arm64.whl (221.2 kB view details)

Uploaded CPython 3.15Windows ARM64

rpds_py-2026.5.1-cp315-cp315-win_amd64.whl (226.0 kB view details)

Uploaded CPython 3.15Windows x86-64

rpds_py-2026.5.1-cp315-cp315-win32.whl (209.9 kB view details)

Uploaded CPython 3.15Windows x86

rpds_py-2026.5.1-cp315-cp315-musllinux_1_2_x86_64.whl (578.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

rpds_py-2026.5.1-cp315-cp315-musllinux_1_2_i686.whl (616.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

rpds_py-2026.5.1-cp315-cp315-musllinux_1_2_aarch64.whl (551.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

rpds_py-2026.5.1-cp315-cp315-manylinux_2_31_riscv64.whl (383.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.31+ riscv64

rpds_py-2026.5.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (372.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

rpds_py-2026.5.1-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl (388.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390x

rpds_py-2026.5.1-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (494.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64le

rpds_py-2026.5.1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (379.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

rpds_py-2026.5.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

rpds_py-2026.5.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (402.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

rpds_py-2026.5.1-cp315-cp315-macosx_11_0_arm64.whl (343.6 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

rpds_py-2026.5.1-cp315-cp315-macosx_10_12_x86_64.whl (349.6 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

rpds_py-2026.5.1-cp314-cp314t-win_amd64.whl (225.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

rpds_py-2026.5.1-cp314-cp314t-win32.whl (207.9 kB view details)

Uploaded CPython 3.14tWindows x86

rpds_py-2026.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl (581.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rpds_py-2026.5.1-cp314-cp314t-musllinux_1_2_i686.whl (618.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rpds_py-2026.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl (551.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rpds_py-2026.5.1-cp314-cp314t-manylinux_2_31_riscv64.whl (383.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

rpds_py-2026.5.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (376.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

rpds_py-2026.5.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

rpds_py-2026.5.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (496.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

rpds_py-2026.5.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (380.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

rpds_py-2026.5.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rpds_py-2026.5.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (404.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

rpds_py-2026.5.1-cp314-cp314t-macosx_11_0_arm64.whl (345.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rpds_py-2026.5.1-cp314-cp314t-macosx_10_12_x86_64.whl (352.1 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

rpds_py-2026.5.1-cp314-cp314-win_arm64.whl (221.2 kB view details)

Uploaded CPython 3.14Windows ARM64

rpds_py-2026.5.1-cp314-cp314-win_amd64.whl (226.0 kB view details)

Uploaded CPython 3.14Windows x86-64

rpds_py-2026.5.1-cp314-cp314-win32.whl (209.8 kB view details)

Uploaded CPython 3.14Windows x86

rpds_py-2026.5.1-cp314-cp314-musllinux_1_2_x86_64.whl (578.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rpds_py-2026.5.1-cp314-cp314-musllinux_1_2_i686.whl (617.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rpds_py-2026.5.1-cp314-cp314-musllinux_1_2_aarch64.whl (551.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rpds_py-2026.5.1-cp314-cp314-manylinux_2_31_riscv64.whl (383.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

rpds_py-2026.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (372.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rpds_py-2026.5.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (388.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

rpds_py-2026.5.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (490.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

rpds_py-2026.5.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (379.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

rpds_py-2026.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (375.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rpds_py-2026.5.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (402.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

rpds_py-2026.5.1-cp314-cp314-macosx_11_0_arm64.whl (343.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rpds_py-2026.5.1-cp314-cp314-macosx_10_12_x86_64.whl (349.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rpds_py-2026.5.1-cp313-cp313t-win_amd64.whl (228.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

rpds_py-2026.5.1-cp313-cp313t-win32.whl (210.1 kB view details)

Uploaded CPython 3.13tWindows x86

rpds_py-2026.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl (585.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rpds_py-2026.5.1-cp313-cp313t-musllinux_1_2_i686.whl (620.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rpds_py-2026.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl (553.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rpds_py-2026.5.1-cp313-cp313t-manylinux_2_31_riscv64.whl (388.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.31+ riscv64

rpds_py-2026.5.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (379.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

rpds_py-2026.5.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (392.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rpds_py-2026.5.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (498.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rpds_py-2026.5.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (385.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rpds_py-2026.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rpds_py-2026.5.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (408.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

rpds_py-2026.5.1-cp313-cp313t-macosx_11_0_arm64.whl (347.0 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

rpds_py-2026.5.1-cp313-cp313t-macosx_10_12_x86_64.whl (355.3 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

rpds_py-2026.5.1-cp313-cp313-win_arm64.whl (223.4 kB view details)

Uploaded CPython 3.13Windows ARM64

rpds_py-2026.5.1-cp313-cp313-win_amd64.whl (228.5 kB view details)

Uploaded CPython 3.13Windows x86-64

rpds_py-2026.5.1-cp313-cp313-win32.whl (212.5 kB view details)

Uploaded CPython 3.13Windows x86

rpds_py-2026.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (581.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rpds_py-2026.5.1-cp313-cp313-musllinux_1_2_i686.whl (619.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rpds_py-2026.5.1-cp313-cp313-musllinux_1_2_aarch64.whl (553.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rpds_py-2026.5.1-cp313-cp313-manylinux_2_31_riscv64.whl (386.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

rpds_py-2026.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (374.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rpds_py-2026.5.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rpds_py-2026.5.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (495.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rpds_py-2026.5.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (383.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rpds_py-2026.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rpds_py-2026.5.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (405.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rpds_py-2026.5.1-cp313-cp313-macosx_11_0_arm64.whl (345.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rpds_py-2026.5.1-cp313-cp313-macosx_10_12_x86_64.whl (352.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rpds_py-2026.5.1-cp312-cp312-win_arm64.whl (224.0 kB view details)

Uploaded CPython 3.12Windows ARM64

rpds_py-2026.5.1-cp312-cp312-win_amd64.whl (229.0 kB view details)

Uploaded CPython 3.12Windows x86-64

rpds_py-2026.5.1-cp312-cp312-win32.whl (212.7 kB view details)

Uploaded CPython 3.12Windows x86

rpds_py-2026.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (582.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rpds_py-2026.5.1-cp312-cp312-musllinux_1_2_i686.whl (618.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rpds_py-2026.5.1-cp312-cp312-musllinux_1_2_aarch64.whl (553.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rpds_py-2026.5.1-cp312-cp312-manylinux_2_31_riscv64.whl (387.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

rpds_py-2026.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (376.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rpds_py-2026.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rpds_py-2026.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (494.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rpds_py-2026.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (383.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rpds_py-2026.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rpds_py-2026.5.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (405.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rpds_py-2026.5.1-cp312-cp312-macosx_11_0_arm64.whl (345.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rpds_py-2026.5.1-cp312-cp312-macosx_10_12_x86_64.whl (353.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rpds_py-2026.5.1-cp311-cp311-win_arm64.whl (226.4 kB view details)

Uploaded CPython 3.11Windows ARM64

rpds_py-2026.5.1-cp311-cp311-win_amd64.whl (231.1 kB view details)

Uploaded CPython 3.11Windows x86-64

rpds_py-2026.5.1-cp311-cp311-win32.whl (214.4 kB view details)

Uploaded CPython 3.11Windows x86

rpds_py-2026.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (584.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rpds_py-2026.5.1-cp311-cp311-musllinux_1_2_i686.whl (620.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rpds_py-2026.5.1-cp311-cp311-musllinux_1_2_aarch64.whl (556.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rpds_py-2026.5.1-cp311-cp311-manylinux_2_31_riscv64.whl (391.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

rpds_py-2026.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (378.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rpds_py-2026.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (391.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rpds_py-2026.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (501.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rpds_py-2026.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (387.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rpds_py-2026.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (381.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rpds_py-2026.5.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (409.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rpds_py-2026.5.1-cp311-cp311-macosx_11_0_arm64.whl (348.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rpds_py-2026.5.1-cp311-cp311-macosx_10_12_x86_64.whl (355.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rpds_py-2026.5.1.tar.gz
Algorithm Hash digest
SHA256 07b24fea40541e28570e5b795a4a38fbdcd12550c06bd0748005ecc8116ca256
MD5 4b257e378eafdac8e4a8749fd3e32954
BLAKE2b-256 2e4325a8dcd3feedd735039a8f0b5b7e3b118232b5eae288c4fd9ab200d41094

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1.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-2026.5.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c43a8a973270fd173bf48cdf80bbe66312421cba68d40845034f174f2389049
MD5 e3f23b60e7f64ab1e1c43585ee852c6c
BLAKE2b-256 eaeae7b0251441da9adfeaebcf29601d10f2a1455fcf0772fae9e7e19032bd96

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8213afbe8a3a906fb9acb2014423fe3359ee783d0bf90995f70623a3217bfa6c
MD5 66bed5a80cba3b60ecb4d85e0bc43c41
BLAKE2b-256 1fff0b3d604614ffc77522c6b288fdbce68957eb583da1002aa65ba38ac0ee40

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c74005a7bb87752acf351c93897ec63ad77a07a0da7ecad9c050e32e7286ba34
MD5 cf72e879e607039877fc74ae9970a937
BLAKE2b-256 1d6f93831a3bfe789542ed0c1d0d74b78b440f055d6dc3ea4640eba2d95e6e23

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 6f249f8b860a200ad35193af961183ebe9132710484e6f6ce0cf89fd83c63a9a
MD5 2e6a9eebc14b9157fe7685b1c063ea90
BLAKE2b-256 3100c7dba3fc8a3da8cb3f6db1eb3386be4d79c2e97c6890d20eb9ac66ae8c43

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 141c9498daf2ace9eda35d2b0e376f9ea8b058d84f2aef4f96fccfd449a2f251
MD5 64c62fe2e40c7ade9b5d5f6baf6671c1
BLAKE2b-256 9bc7b3a6a588cc2219510ef3f42e207483a93950bedd1e3a0fd4015c95cff9e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b95d5e11fc712b752081183a55a244c03cd00570489edd7014d8899f8ceb8162
MD5 1be95fdf96e28aba8fdeca6f8211560f
BLAKE2b-256 7425b60e52686bbff777a64f9e4f4d3dd57980dc846913777177a2c92e4937aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0b35217adefe87f2fe4db7e9766cabe84744bfe9616d9667be18988928c7f2dc
MD5 c06b19c9c49d0a20f30572aec7db6e09
BLAKE2b-256 ab86ec84d243aadb3b34b71dd26a010d0930b2d284ff5fc9a69fec53810ee6fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6142dbd80c4df62a5d899f0d616d417f84e0bc8d32526c8e5589019d75d028a7
MD5 2773c940bdf89bc0585eff4c470623c1
BLAKE2b-256 403032e769839a358f78810c234f160f2cc21d1e4e47e1c0e0e0d535be5a0219

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a04df86b3f0fade39ec8fd0e0aab089b1da9fbd2b48df778a57ef96f5e7d38df
MD5 78af50db728c0d52e9d38c1649371204
BLAKE2b-256 a724dbda232bc4f3ed732120692ab0d2c8402cb020516556d8bee622dcef2413

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e4abbf391a70be864920858bf360f4fb380577c9a0f732438a1996726e2c195b
MD5 f7fa0687f7de6774f8c1a22e6ec26339
BLAKE2b-256 93dd472ba494c70753f93745992c99855bee0636daf74e6984e5e003f150316f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad3773236e95f7f33991eb125224b7da66f206504d032a253a02da7e134519fb
MD5 08e3634f1b1487577fd3db499f7aec01
BLAKE2b-256 8bf23eb9ccdb9f143b8c9b003978898cb497f942a324c077401e6b8834238e63

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 edf2765d84e42447f112ad877af8fe1db0089aaec5b28e88d6eab45e7fe99cea
MD5 b3dee19786029d71f5281505f54fa246
BLAKE2b-256 42563fe0fb34820ff667be791b3a3c22b85e8bcba54e9c832f47438c191fa7be

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: rpds_py-2026.5.1-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 225.4 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 90bd6630002a1c7f09e7843dd79f0d24f3d2897cc25a753480917865d14f15b3
MD5 231229f7a9d4941e21ad310783525938
BLAKE2b-256 79cb966040123eb102371559746908ef2c9471f4d43e17ec9a645a2258dab64b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315t-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-2026.5.1-cp315-cp315t-win32.whl.

File metadata

  • Download URL: rpds_py-2026.5.1-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 207.9 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 75808f6c38ce7749bb68cc2770161aae5045e6c6f6781a9782e74b93304399df
MD5 3c19b34e4ae4e804cf00daddeadcc17b
BLAKE2b-256 152dce1f605fe036aadd460e5822e578c6c7ec3a860936cca37d6e0f299daa77

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315t-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-2026.5.1-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1be5c35683684d5331b93600c210e8367c254683d8a6df6bd21bd2da3a334fb
MD5 698b70bba3ae3d91206f1a41c2f091cd
BLAKE2b-256 776538ab2f90df44c2febfb63cc10ced40763d9b4bc94d173e734528663fe7f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315t-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-2026.5.1-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42d0f20e85e549c870749d0e247f0c10d318a45b7e9676d575d2dcb04a1b2e66
MD5 aa6c6c77eccf0a8d3423ac53a6b1aec8
BLAKE2b-256 3bc1bc479ca069200af730881b1bd525e3114b2b391a351509fcb1b772f28086

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315t-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-2026.5.1-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 43bca78665423cabae77146f2fe7ce55272b6c8d55d82cca83effd42c7e13972
MD5 9a90f04021b697cb767ba3459c1863b2
BLAKE2b-256 78c4c98117b03c6a8581ab2c2dfccfe9a5ad82bd8128a3c28b46a6ad2d97c393

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315t-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-2026.5.1-cp315-cp315t-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 656a042550878f12d45752452d47094b7cfe5ad1e9d7b87b5a22ad3ae5ff8015
MD5 d9b36e2b1284b4bf1a9bb26fa59c920f
BLAKE2b-256 f891b4d6685c27aba55bd82f25b278be8237038117d05f9659a6213ad3408130

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315t-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-2026.5.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aad1bff7f666b9598e573815affd666aac6a13a585dde336f843e33350c7fadc
MD5 502962fe83762162ac00186528552a81
BLAKE2b-256 6e67fe92ee32a6cc05c77228a2f8b1762e7124f386ec20ff83d0757b762d58d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315t-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-2026.5.1-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c396c1304de421050b3681ea70f371874b54d41b0151e96109758144c231e30b
MD5 f483df9baaba99ac040a108a51490c5f
BLAKE2b-256 1cc7ff27c2ac8411d30b03b1829fd88cae8dad1a4d0da48dd25e57c4038042e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315t-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-2026.5.1-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0957cf3c2b8632ec7aaebffebea8005b353cc2a237b6e2ae3c2cac0820704cfb
MD5 851f836db25a1015a7863ab5738eb19d
BLAKE2b-256 02c3f859b12763a80540cdf2af0f15b19904cf756a71d7bdd3f82ff3e5b1bbf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315t-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-2026.5.1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e3a8ae58895ac107ed934a6bf51e5846f95c53b9b940c2c6d310838fd5846358
MD5 9cf73fc9c0b26ceb9c01eb4f018a2488
BLAKE2b-256 ff8f15e5a61d9f0a43902d36561d4f07cae6ae9f4716be825159fd72717f33af

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315t-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-2026.5.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55d8f9b7b78c9538fc9e04e82ec0e888ff0c3cffcfad152c77e57cd09351a98a
MD5 3e5738c4c1af48924a606325d9ed6bb9
BLAKE2b-256 8866b74182775691ea2290c99e52ac8d5db844e56fbec90ce421f107658c8314

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315t-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-2026.5.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 73c4bd4f70294737b5206a3e8e30ccadbf8a60301831c8ea23eec5dbeea1ecfa
MD5 6ee1cf648478547190603deba0914545
BLAKE2b-256 bd792c1d832a53c8e0f8e98fc970ec257b950fecd4f62be2ab7182b500a0cbc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315t-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-2026.5.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5f077b44a4f7808520f66dae234988d867deb9aed9be5da057ce9ba831b2a41
MD5 893bc07734ba92d91a40041c552cdd5c
BLAKE2b-256 3b5ff1f6d2652eb9d848f6eb369d8db83a2da6249bb49ad2c2a48f45d54538d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315t-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-2026.5.1-cp315-cp315t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5d333a7127d4b307601ac37792bee01bb95c867cbfacf21b6375b804d6bbd723
MD5 5555cef0d5578f987d5007725322711d
BLAKE2b-256 e022135ce03804e179a71ceb13be095deda4a279bc88f7a6b8fa161c5ad44e12

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315t-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-2026.5.1-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: rpds_py-2026.5.1-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 221.2 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 3609e9939a8a76cd904cf98a3f1f13b5dc7e150adeaee89e0ea09652ea213e16
MD5 31d414d321c98b7edd216d2257fa8cd0
BLAKE2b-256 5c5ca15a59269cd5e74472734516c73795c15eccfc841b3d4b0228c3f53f19d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315-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-2026.5.1-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: rpds_py-2026.5.1-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 226.0 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 b3cc20c0d800af78fd0fac68086e28c1856cec51ea528bb81ea851aa40d39325
MD5 624f674ed65f622807b96988d92c3549
BLAKE2b-256 9ee4966bc240bb0485fc265278f6de44d05834bf0b3618886e0b22e33d54c49a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315-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-2026.5.1-cp315-cp315-win32.whl.

File metadata

  • Download URL: rpds_py-2026.5.1-cp315-cp315-win32.whl
  • Upload date:
  • Size: 209.9 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 7818f8d0a415be74d2be3590b0a1c1f463a642f4d0217e7d10602dceef5b79aa
MD5 040f0baa8e68c2952c879ca101d044d5
BLAKE2b-256 096ef24201a76a84e6c49d0bdfdfcb735210e21701e9b21c5bfc0ba497dd62f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315-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-2026.5.1-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3966b82dd563176396df030f3dd52a6e54cb69b718e95e78bd555ed3d1e0185d
MD5 78d7f1329a294766518277695cbfb0c3
BLAKE2b-256 70a1a6135aed5730ff03ab957182259987ac11e55fb392a28dc6f0592048a280

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315-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-2026.5.1-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 205dde846f24332ab0c1188699a043b8d165b79bb84529ce272c45048ff6be01
MD5 55f29dad3faa8afe414950011b2514cd
BLAKE2b-256 217c68e8579b95375b70d2a963103c42e705856cdb98569258bd807f4423891c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315-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-2026.5.1-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 980450826cf22e133c57e0835070bdd0dd3f73b9b708c3ce223def2cb9469e14
MD5 3443e5035c3653f5c0220ca0d3001d75
BLAKE2b-256 38c1a770b9c186928a1ed0f7e6d7ae50e7f3950ed23e3f9e366dbc8e38cb55de

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315-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-2026.5.1-cp315-cp315-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 83bcf894486c9d78dd290d3c0124ff6dd8875d3025e2090a8ec49fcc37c55fdd
MD5 74c14aacc723c8eb08a5cf9e54a9738c
BLAKE2b-256 bd3a30ba4a6ad457e5b070c18d742a33fb77d8d922b565cc881f8a5313d63bfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315-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-2026.5.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77c004fdc7b891967106f78ddfd7b076bfe6813c6139c6fff6aed3bcaa960b26
MD5 7b3399bf8ae0e12c990c073f4a3c9339
BLAKE2b-256 1823ffbe10711c4d766c1cab0557d6906c074f795814863c67b351355d29354a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315-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-2026.5.1-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba05adbf15d994c38ec0b7ab32e858e5110c21e9009a00a86545fd220f84e038
MD5 c5d7a584e1c23a7837f4e82ab6b1810e
BLAKE2b-256 80af1eeb029bec67582c226b7809172207cd005073af4ebd906e65ff494f4983

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315-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-2026.5.1-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e10464d17df3b582745c25cec695cb9558bca2cb6ddb631aee1787fc72c767b2
MD5 17b88042bac3113041d1b603eeb22d84
BLAKE2b-256 d7e28ef6012999ebf1cb1c22f876d9ce5e63d960fd4631d2af3202d3f480aa25

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315-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-2026.5.1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc09f82e63d4bcd58149572f857a431bae851dc747e313c3b5bdf7abb907fda8
MD5 cf3a7884904b36c9f05535e1c92412f4
BLAKE2b-256 5a5d0b7b03fb1dc509321f01de3149784ab773e34c8573022029af8076afcb9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315-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-2026.5.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3a5b10e8ce894825f380a8f1b6444cf73c294dfea62afbb2d13e3a9e630cec1
MD5 c60a535b7575ba52e0e1dc412c70f4c8
BLAKE2b-256 f77d6c9523c1abbe840a1b7fba3c516d48e1d3487cc80fea4366c4071cf56784

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315-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-2026.5.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c3df104083952a0e0c6f10de33e440eabe98fb6317d23e1a58c68f6df08d01b9
MD5 b76531ea4bbfc2b74e81ba67db30a829
BLAKE2b-256 d36962e242b53ce39c0814bd24e1a6e6eba6c92be716277745f317f9540a2e7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315-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-2026.5.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94068eb3ae6d43f5a786b7db96a406a34e6d5c24489feef32fd6e8946ea7b291
MD5 84c1bcfe1cc3c05eced791084717bd4d
BLAKE2b-256 d78a2aafd7ad355a1bd48ca76e2262b74b15e6432b5a1efe150efd4d779cd55d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315-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-2026.5.1-cp315-cp315-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3574b55c604b8f75dacb007136508bbc0db406e626301778096a133327e7f2fb
MD5 cc4304297bfa492402f80201dada7caa
BLAKE2b-256 273a7b5da92b640f67b6717ccafc83cdd06bfa7ff2395c3685c68922bb54d703

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-cp315-cp315-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-2026.5.1-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c93c629be4636cf54337bd5f06c104d55e42ced54d681f6fe21ae510a65116f6
MD5 2567dc319e04a3315164670d3ba5ff4b
BLAKE2b-256 2a72bfa4e61ab8e7dc1c8adf397e05e6cbdd4239357bd72b248d3de662f23915

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6c3d771a46ec18b12af06ce36243a9a80b07a5d0515236332d90863ca8bb326a
MD5 4afa1abf4136842ad91d5efa6cd77664
BLAKE2b-256 25d1dbef8c1f8a10f07beb62b5f054e20099fd9924b3ec001b8f0b6ac7813a85

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62ae3853454fe9ef283a03c96c2d835d39e84b14643a9d62c82ef0fb87d702ca
MD5 64b2e4711a20d0ec7709713ec556cba6
BLAKE2b-256 f3d7afb49b49d7f2be8b7ba1a9f0977fa5168003437b93086726f066544e8351

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 036a36a87fb1cd3b214d11c4b3c4f7d2ddad933625dca1c900b56a057c07740a
MD5 a94fc02ea66489227c46c4f8e307e716
BLAKE2b-256 b8c11be13327acdbead3eca1fde03b6a34dbb011f1e864e217f0d32cc1779a7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9af8905b8f854990e40d5206aa5ac58d9b0fe0b7f351ff2bb086c20f6c8c6a47
MD5 d96e54ef65a9a96470cf524aa7c021a2
BLAKE2b-256 87ff602fd3f174d6425f0bce05ad0dfbec0e96b38d0f7d08a79af5aa20083885

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314t-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 1ebb2f0ab7e16132995a72de805170e0203df0c3dd22e1ef1cd1fdd90bd7a131
MD5 9a7276893dc64ea117b0bdd4ca98a950
BLAKE2b-256 27605f38dc70824fc6951b51d35377e577a3a3a4c81a6769cc5a2de25ebe0ad1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90f628283be835db980c941767d41c9a27b5239e54ba0a9c1335247e82406964
MD5 267b604ddfa5e972af0b7a798cc399d0
BLAKE2b-256 c6767a41960e3fddae47fab43a28684d5da981401dffd88253de0944148654cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8d2f912928d426e8cfa396f7f3f8d29a59e6689c86dcca3c420730c1096322b
MD5 92276859bd698de36902de4b0d8e1fa8
BLAKE2b-256 eae0425faba25f59d74d4638b267f7c7a80e8649d2ef4db10a19b0c4a71e6e6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9baffb505aff33acc69b422a19f77806680f3c8632227d79f48de8a810d1c2c5
MD5 63875ac1e429c07e1324992d715ac75b
BLAKE2b-256 a8ff6e73f74b89d2e0715e0fc86b7dde893f9a61ae2f9b256ff3bdfe41ac4e94

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc68e231a77a5f0d774ae278a1f8e55c0456501820847c1e4efb3829f3441df6
MD5 246c43e2e52874d5b3f20755ea380350
BLAKE2b-256 0c9a37e99f4915a80aa71670263c1267f7ae0af95f53a3f61e6c3bdc016d4515

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef1013a8625c74043210190b246f5b1551e09757c1f356c6e4160ef96c5bc081
MD5 e91a619d763c0a46826876f92636a731
BLAKE2b-256 1a711d9574d6a2fa20ab60eaa55c7467f5aa20cbc770f341a05f09c0876f59e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f3df3d16ded76f1f8c9cdebd0e1ea55fdf4c23b812de189814da7cf229c22a81
MD5 93413e8bafab8ffcc5bb1dacd82bf86d
BLAKE2b-256 601ad60a38caa1505f4b9483c3fbbde12c94e1079154f4f401a6da96f7e77621

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f414556f6e3958300ff941e40c9f97e3dc9774ddd1b3434c475d73dd354bbed3
MD5 369972fe43be917d06d1a7e53d2b2555
BLAKE2b-256 319b5f4a1e2f960bca3ac5d052b139dd31eed97b259f9d909173821760d542e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 21942f52dbbd5f8758bf021213d28bd45c39e873e65e2407faf5f1846f5761ad
MD5 bcc255395017e235a642b285af91005b
BLAKE2b-256 2358e14ae18759020334646b031e708ab4158d653a938822bfb7b95ef2e93aa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 eaaea962c68cdc68d4a533ba985ab8e9484277910bbfaa2ab3ef7732667bfed8
MD5 71e69209cd96b9e3f704973c147a8035
BLAKE2b-256 277cad185212e87b05f196daef92bc5f3caf07298eb47c295b5585c3dd3093ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cef8ac28d26f4dda3533060c20fbf80a325458fa9fd23ea72a73cdfa8e978838
MD5 d488213098f2e0ef8fd9686912ae9a64
BLAKE2b-256 fb8065a5aa96c155e611d1ed844e4e1f57f3e36b021f396d9f8585d756e6b90d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2d88621d6a7d4dfa633d21abe90f280bb205274e16b1d1e61c6ad4640b2453b7
MD5 008d9cd8458831769552c69868012842
BLAKE2b-256 6556b5f6fdb2083e32bca8a8993d89e70db114b4756c9e2c38421328126689d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed0954b524873214369184a9c82b0eaa45a3fbb9a798cd95b17e0d98499e7ea0
MD5 26b19501c43277738ae5edf0179dbcdb
BLAKE2b-256 2cea2e051a81d95d8e63f4b35a1c463a87e8766bc3d083c067c5dfb6bf220747

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e237e139f94d3c036fd28eb9f564c99055476ff4ff05cd42be55ce349b5aa02
MD5 259d61f87df837d6314e93fb11971437
BLAKE2b-256 d8f7a6731b4216cb3793ea1af5391da240f5683dacc0d13e034fe5fc3503f240

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cdddb6c1207d284d94fd1530adf57fbd797fe7c4b8704ba85f49414f2557e7d
MD5 5a8639caa80ffa7873e136c8cd3c92c4
BLAKE2b-256 e51be4fb584f8c75d35c38150ff6a332cda949e6f97acba1f4fd123b14ab56fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 b317c87a13f769a4e787819bd508aaa5d69aa09b0880de9af6d3a8a54571cdec
MD5 5686e294741a1d2cf4e4f68d988bfa84
BLAKE2b-256 8235c51122014d8274ff37dc606d60049c3db7d83da02b5b282511e5a906a9a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21846aac0ed2e0589f38c12dc44e77bb64e494b771eadbcf169cba00566ba7ba
MD5 29733b654696087c1a6160cbff257984
BLAKE2b-256 19c8d63bb75b68afe77b229e3021c6031bcaf01da5db5b0e69d0d10f9ba679a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c817a189d4ee14290420e5ff051e4dd6baa13f3edf84685071dee07a6d538ee
MD5 4496a7c76361f465073a2b504011e514
BLAKE2b-256 0faac671bf660f12e68d3c52ff86c7066ed1372df5a0f4f2ff584e419b8207e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c7fcf61d44cacecaf3aea542b0e053db77972a4573e7ceda16fb2b399161195
MD5 f612af4b1bccc34fb4118965611e4690
BLAKE2b-256 becc423999bbb8ae8dc93c77fc1d5e984ade5eb89d237d3bb884ccfa72ae2890

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c27c5f6102eac8c03e7595a00827a53b271ba40a53b59ff8709170e0855ea4a
MD5 f7730ae8c1e39dc45760ad8b5e0bbd32
BLAKE2b-256 147fe00aae54067f2b488c4637961d5f58204d470795fc791085fa3f15060d2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c595a1d9255dce0599e13130d1440ab2506654f2b50294226ee06402f8fef63
MD5 3488a2b3a377297f0a5b151afd2412e8
BLAKE2b-256 bfecb2333b97b90e2a6ef6ca8ad386ee284968e74bcfe113b3f1a8d9036429a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ce87129d9f2c14fa6c4a8601fb80eb4488c80d38a20cd13758ef11123e14995d
MD5 467db4c3d71acac5a685c51afa75f2d1
BLAKE2b-256 e3f92790cb99c136a5363acdeacf5c27c56f3de0d4118a1f48fca83404c99c89

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 413b424f7c4ee65ab5e5be91f5731be0f8b41a1ee2b12dfe810d716312e95a78
MD5 2c796f82200bbbe43a939924d3fa1b3c
BLAKE2b-256 e560a06fe7da34eca79dacbf958a2ba0c6eea85bc2b29de20080bf40f72f66fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1f2c391c3059798093b65df23aca2cac150460ae9c630d99dec83d703d9485b9
MD5 fdfc35d005a1c6939392cdfabdc819da
BLAKE2b-256 d46f19c1918a4b590d8de87e712e4abe4b3875771eff60216fb6153cf6665c68

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e07be2a9d7122bd6e82dea89814ef8dc893feb1aae97fec1630f3263bbb30e55
MD5 5bcbd76bcd531ab33924da2eac372073
BLAKE2b-256 e78b609157d5a25d37d4f29f92840ba531f416907c34ae5c5739dd21fc2bef98

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 a2999883eedf72fdfb7520b92c7d4ec2572a71ff40239377aa604cc529eecafc
MD5 d408edb73cbd3be8b0902dc935d0862b
BLAKE2b-256 da683b2c0a75c9e04125696f84ebdbbf304acf5a40b58ba4481cdb98a922c3ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0b360f316d966b048b085857630b3cc51f3db2f07b06f440eac8f695374d1e3
MD5 31cdb20bc118ed9b6f46f7156f8fbc9f
BLAKE2b-256 8a229bf80a56069c0c443fcfefac639a86a744550a2898817a6dfd3e26654924

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc0c0f878ea770a0a8a462456c5ad36fc9fe6358e6b76fdadc7f17575e0b8bf1
MD5 2983aa903579dc90c37da35b2d8dc498
BLAKE2b-256 75ab1a71ea3589c4345dac0a0518f0e6a031cb42689277851b683c46d27463a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fea6e836d10abbe191d557d33bd58bd5987725fe63aa1eefe557d230209855bd
MD5 0a474dd68f46fd9640e9ae128f390d62
BLAKE2b-256 08d6070f6a41cbb343e2ac4171859bf3f3623e0ab002f72619d6d505313ec2de

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313t-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 b9a6528956191c48c52294a592dbd4a8386d7048bdb25c0efcb6b966466c6d83
MD5 dd286cee2da21d80a03110b4169a7e8d
BLAKE2b-256 244ad9b0c6af3a1de03eb93741bbe8be2bdce84d8fda8224f3005451d86df389

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27b74c10ed6a8f190f4287f53bcfea348b92a84a9c9f70d30183d1e6172d580d
MD5 9d23e1e0520090a46a82ed9740f6ed92
BLAKE2b-256 b21d46cd11a228c9750684a798d98f878be6f614aa762438da7378f035e79e35

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4fb8d2e7cb2f850b169806d61d1b991738acec96500a75c30f49caf064ce7cef
MD5 d78cb30b82c1eff33b045424cd23ac25
BLAKE2b-256 27fc90fcbea459dbb8ddc18a2e0fd1de9412b48bc84ffff2db771cf714bacfd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d3858b908218ee108d0bbfb2095ccc237648053c9bf98affad7cb079acaf1d97
MD5 c3b93f22b1c77ab157da618fc01a243c
BLAKE2b-256 1c91dc033f313345c354ade914dbe73cdb90b615a4409ea02430d5356794f3d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 296c799becfa849c779c8725494fe9ed94959ed886787df4364b058465bad7f0
MD5 3c1ea2fabf8b212ed8edb72f59d4ff59
BLAKE2b-256 c2c8535f3d9b65addd8e28aa87b83c6e526799c3717a88273db8ea795beeef7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68700371c5d7ae1412862ddfa719090925c93ecf351c566d66f09d04b136ea00
MD5 099d5b5b5f0235ecb94018f3a7d9d0e8
BLAKE2b-256 fbc21a71acdacaf4e259b10278fb87b039ded3cf80041bcd89dd8a3ea702ded6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 af03e34e860047bc7a352b842856fcf78798fbb81132cc98bd2f907ab4eb9cd2
MD5 0deadbe4cc9c36dc7095d7611ecb3fb2
BLAKE2b-256 c5b4db7aaabdda6d020afc87d981bcc2f57a434c7dec60ecfc2ab3dd50b20351

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cacedb7a6e167680acba45ad5716e89067d225dc80da0d7040cae8c81d4572fa
MD5 df028ce8cbafb70d54443a8c065ad91e
BLAKE2b-256 8d585c4a43436843c90d0f6d19f82c200c80e3843ca9fa07b237623327f6d384

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b4e4bc98639ec915f512fde3aa7a95e0041d95d9c3cc86eea841fa63cb1e8600
MD5 61a244f2800877182a927597ac02ca31
BLAKE2b-256 18e2408105fd611823f00882aea810f3989a30d26b1bab8b6beb20f98c724e0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 453895624ecf7db7063b1004e44037522bbaef9ff6a945e59bc71662d7a03abd
MD5 dc1ff5dc02ca635fe4ec005d861a16fe
BLAKE2b-256 2960a73bfdd45b096574556acf303bbd9fa9eed36ca8a818b514e2a5d5fe2b9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 88647f43a73c4e01be19b04ceef0c8d3a1958153604d13c773becd8016f2a0cf
MD5 f80b9df99822d579159c96dfa49ebbbb
BLAKE2b-256 70eca2aca432db9c7359b40fa393eeeaa0d166c2f70175be956e75fa24197c44

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: rpds_py-2026.5.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 212.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7944270ae71383f6e2657dd7d5ce4eeb4ac2d0059a6738f0510583d462ab4842
MD5 c18751585fca4a7beffeadfbd2ae49a7
BLAKE2b-256 a174e758c03a5ef46f04c37f2651a2893db846d569ba8a7bca469d4b58939bcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4860b603ddda0475a8885499b3729e90229d480105b42651962a5397d995fa89
MD5 d1e3ecf477aee9f4c81f8bcac156ffb4
BLAKE2b-256 611ea3cb07f2795075d1d88efddae2f541359fde5f08c81ee114c29c2949c90a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ba264fa49be666cd9cc56bf34ec7002fb3d27a4aee5bcb4d43d0d18feb1bb6f
MD5 0286dffed3ead93190fe301e6d823d56
BLAKE2b-256 c6c37b3388c796fcf471bd17194242d4dc1a7608567c0fa422bcc1c5e79f9c1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8bff7073db3899158fff55ebf57b113a67030af26f80a18978f9f0aa60250ddf
MD5 e9700b3a6eafb26fd3cf19a8c56efabd
BLAKE2b-256 663f3546524b6eb4cc2e1f363a3d638fa52f6c24faae3500c25fb488b02f1740

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 19cb09fab7b7fc96b2a6e28f2e34b72a3705ff27b37edb77455316e5d3f3dc9b
MD5 537519afdec9870e8f436355df345e89
BLAKE2b-256 88d18c90b6431e80a3b91b284a5c7c8c0c4f9c006444d90477a740d6e0f9c694

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1b964e3ab599e718dc46c018d104b1ebc007cbc6567d827c94a687fca56d77e
MD5 405d06e10deb3148ff1b7b303b2d4e98
BLAKE2b-256 4b2505678d97fc25e2622df14dc530fb82023174ecfff6733991ed0d78f167bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3350ec808fb538fe71a1f94dfaa0e29c598dfad805ce49f0caec5ae3183c652b
MD5 d4fe46ae3a7f9ab18bffc0c962e8b2da
BLAKE2b-256 99633a8eabcad9314b7daf5c65f451d2c33d989235cd8a5762186cf2c3f5a4f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63c2c4c213f1a4e3f3de28ecab029dbdee976324e729c0d7a55211be72576b02
MD5 61f8925b445a38252128aece21059e23
BLAKE2b-256 dca257853d31a1116a561aa072794602ad3f6341e18d70a8523f1bd5b9fc1e5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 277f6c82f0580848796c7ecc8a7173aa3bfb928e4ff831261c2f60a81dc270db
MD5 42921fdfa88cb0f9e152b428a3abbacd
BLAKE2b-256 e2ae469d7959ce5b1201e1de135dc735b86db3b35dd0d1734f6a44246d5f061c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5c30f3f04eef4fbd362226a6f31d7c8895ca4fbb6e0b790f6890a98d8da8559
MD5 f17080ecba8a2dc250a9e880ea8e6880
BLAKE2b-256 7c46d84105f062e626a1b233f863907288a4708c2d833b8b4c6fb2764bc080c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 abe76bcdba31e576cb83eeb8797aa0d882b738fef6dc65d0601fc753806a5b46
MD5 b33aa889b0f055e45019ee33c2ee3488
BLAKE2b-256 ff994638f672ab356682d633ee0da9255f5b67ce6efd0b85eb94ad3e255e65a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c39f5b67a8a2e67179ada2a954227d670fe65fa9098457f698f56ddf248709b3
MD5 87e7002f9bc92e14f6980905ed5d60ac
BLAKE2b-256 cabbd1b85117967c11191441a7274ae616c65d93901d082c588f89a50a8da5ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 efef4ac29c6ff495531eb17ee705b62841ecaa291b7c7077e848ea03e237164d
MD5 06db250e9a74fabfb24a1a74280ab159
BLAKE2b-256 6c3214c961ad295f490eb0849ada8b79683e93a59b9de3afdd983eaf55fa6867

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for rpds_py-2026.5.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1841d067089e117142d79b98aa0df2f08b52f2ecc1819dd2700636c0db74a473
MD5 dcb6f27556894890527b59105b74c45d
BLAKE2b-256 cb536c3419d85eb2ec5938a37627c585b42d76a63bb731d6e42ed4b079ebf486

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for rpds_py-2026.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0a7d1eec967df0e9b22614a5e177622e0c89611d03727fa0cb48e45028907870
MD5 3a7da054c4981d0f3ba82c49123b4575
BLAKE2b-256 c593e4116f2de7f56bc7406a76033dc501811ddeb22b7f056b92d632871ebb0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: rpds_py-2026.5.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 212.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for rpds_py-2026.5.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6736718bd4fc49cbcb538ba30516fdbef161522acefb739657d48b97bd864fed
MD5 ce8e4a9618e37970c93704b85f74af95
BLAKE2b-256 041d9d12b0a337bab46f4769f8857f4007e3b2d639e14f9a44a0efe157696e64

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4be8b1d2a705cc37d08256004e1d07de143fa0075c8e85a3df020b776f62b732
MD5 f0fa9280d6b830a8d9aee49cb10cf754
BLAKE2b-256 6ac17d4c26f167f8c41501cc073d30ee22082b16ce358cf5b00ec97cbc7804ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cea68bcd53467561ae2f96a6bdad1544299ba97b5b0ddcd5ac3d376e5c781c24
MD5 e84140a83febb192c8221176bd57e851
BLAKE2b-256 d4252ee807bdb3e1f0b7eddf7782acd5665a8b5205a331a7d7244a52c4812fd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0408a24e44feb919423dc6d9da677cb5cddb894d2ca9e763967d156d9c60fab4
MD5 0e3c191f2b65a97443a3f9e8cbb930a5
BLAKE2b-256 72e64d5718c5cf26c522dc7c9999e238da1e77380b81d0c5d1df11e271ddfeb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp312-cp312-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 de42116e69cb53b911cc34aee5ab98f36c597b822545045d49e938818b99e5e4
MD5 8a548163ae208103ba2244d3e4fad448
BLAKE2b-256 b9e561ec9f8be8211ea7f48448195549e4aaf02004083475493b0e137702ecb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6825cc329b290e93c5f6a9be2393118a763f6ccf6abd83704e0c102ca583644
MD5 17c8ffa1c60a61f9ba85489ecc31e40a
BLAKE2b-256 f41e2c9096fc19d5fd084b0184ca2b651e659aa0a37e6fdbecf6ece47f147fe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40ff257542e04796880e011e15cd4dc21c2599975df2aaa8f2c8495ca574e1a5
MD5 120507a858428f9ff37b830e108cd699
BLAKE2b-256 1f7533d30f43bb2f458de11979486a591b1bf6e5651765ed1704c6197c2dc773

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66c93681c4729e4e3ecba31b8179fae083ff3118841672835140338b4b9867c1
MD5 735690f7c603a7b46d0075f84b2938a7
BLAKE2b-256 11dfd94aa6a499d4ac40afe2d7620f2c597fd3c0f182e854ad7cf3f596a81cb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ca653c6546386227cd9800d1bef6a348099acf8db4250341da6d90f663d6dfcb
MD5 7b236d06d5e8fb7cdb26e7151d807169
BLAKE2b-256 d011ee0ba42aff83bf4effdbc576673c6be64c5e173978c3f6d537e94482f77d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fa92420128dadce7f54bd73ba1825a273e9268fe9e35dbf7e6362890efa4e08
MD5 f9be42c4049966efa3a951658ae3b197
BLAKE2b-256 20e10f2160c5982d3157734d5cb3ed63d8b2d583a73c9864f77b666449f32cf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c0f920015df2a504bebaba6d4c31ccf3fcf942f92655c086da30b671aad19aa6
MD5 916ca9fb1eb20fb407e4316affaceedb
BLAKE2b-256 0dcabcec1005c4f4a234f92a29078631fee49206c7265ccae966f18fd332e80e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58b1d94308ddf0b1982f61f2eb54bf92997c9ece8a8093ef014250f4a517906c
MD5 e9d6276e8f34862212fe9facab49b93d
BLAKE2b-256 a34335e3f136343aef451e545ce8c38d36c2f93c0ed88703db8b64ba2b205c68

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3abe24a66e57adcfa645d718063a5fa5103ecc71ddbf26d78af8f9368018ff1d
MD5 2400be0c5c8b6d0904b8f08e56515cc5
BLAKE2b-256 d4e7a78582dc57caa592dcc7d4fb69b61390561e908eb3d2f5df5928a8e354c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for rpds_py-2026.5.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0a5ae4dbe43c1076983b72616496919872ae7bbe7a1e21cc48336bc3154d130b
MD5 fcfc87a321776cfbc493228bd3c3ff10
BLAKE2b-256 49d6c6bbf5cb1cf12b9732df8074b57f6ef8341ba884c95d40632ae8bddb44e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for rpds_py-2026.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7bd530e6a530bb3ea892f194fafa455f3516ac25ecf7143fd33c09be62b0470a
MD5 68dee2d4d0059888b47507ef1e61a5f9
BLAKE2b-256 3cbb3dcab0e1d9516303f2eb672a5d6f62eca5a69e2886301e9c8c54b520c39b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: rpds_py-2026.5.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 214.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for rpds_py-2026.5.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3684a59b158a7683aaeb8e25352e9a9dd2122cec78f2d8530266e4f91b4c7b3f
MD5 c8da68003cf388d075715f85e2c0e782
BLAKE2b-256 6c31750617dd0ae1752471bf43f9e41d263398fae7cde7849d23b8574a70e617

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8895840ac4809e5f60c88fd07617cd71326e73d6e5a8aa783c5c0f7c24985de2
MD5 3f54796a960d637208230c2566d86ddb
BLAKE2b-256 e0d59937dce4d6bda74157b954e7d1460db05a22f5929dccfeeba1ed27a93df0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df1d2a1996755b24b9ecee92cb4d36c28f86f464a6a173349c26bab41e94b8c2
MD5 7e2495f2ae9b34f9688bcc681648c373
BLAKE2b-256 ff105437c94508169b6b22d8418fef7a66e9ffb5f3b9e9c94460f2eedafe06ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a05fa4f41f37ec97c9c260441a940450a192f78d774d2b097eee1379f1e1246a
MD5 68cfb09456558159bae31764d51b29a2
BLAKE2b-256 160f007ec21283b5b040b4ec3bd95e0402591e22bfa7d5c93dfe01c465c2d2d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp311-cp311-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 85264a90ff4c05c1568dd65f5921c837614b67c60358fb4c17df3b7f2e90690a
MD5 76da47104ef66a4e3d15a3c033ac384d
BLAKE2b-256 97641eae54e34d5161f9969295e80bd6b62a55f2b6ac5f2a5b60d02c2140e758

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 613fc4ee9eaef26dc5840666214dd6fbcebcf32f46e76f4abc473059f4e13dda
MD5 d6b0b58cccd61a4ffff480d9b3a3c5fa
BLAKE2b-256 3d33237173db1cfef10105b3839a24de00eb8d2a523711add4632447cdf0aedd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e25b7088f9ccbfc0dfcaa52bf969300ca229e10ecf758974ebcbb080a4b37bb
MD5 089525f0805e4f424836dad18e18f1ac
BLAKE2b-256 8606ccb2109a1e543437b5e43816f2b43b9554cc6783145528a4e3711e05c011

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7559f72b94ae52659086c595dfa017cde03155f7832071d30959049052cb3ece
MD5 59c260f0efa4ca8f0d2f82626d5bfd5c
BLAKE2b-256 fd0ed285d1bc8864245919c61e1ca82263e4a66d337759c3a4cef72766ff9afc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 01d17b29c0c23d82b1f4751147ec49cf451f1fc2554eb9ef5f957e55d2656ead
MD5 9a02b9fba6cc1c0f9748e9c458c4028d
BLAKE2b-256 220be83bbd97ffac6f6389b605cd4e1c8ac5761dc7e977769c9255d8c5adb7bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0efbe45632665e53e3db8fe1e5692db58fc5cb9bab4459d570b83efefe11164
MD5 208fd0218396012b296badc666754e27
BLAKE2b-256 338cb47326ad2f0be545a5e5c1a55937a12afaea7d392ba2837bb9680f57e6c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fe71bca7d547acb17027c7fd1624ff8aae623499c498d3e7011182c4de5c25e0
MD5 96c0c6c89a2339325e6e80ec2cbbb7ba
BLAKE2b-256 d8345bb334a5a0f65d77869217c4654f34c78a7d11b93938a3c076a2edeafc52

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99ab6ba7bfa2cb0f96a04e3652355bf04e3f51aceb1e943b8541dab7ba4828cc
MD5 233a37cd2305fb8067ecc9e1b4060c3d
BLAKE2b-256 b695f8203fd997484b1690a6869cd0e503b6c3c6be55b0ecc36d1a491fe742f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-2026.5.1-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-2026.5.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-2026.5.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3397a5ed7174dc2786bb214030232fc36fe8e5584fec43a9952cc542b1a12036
MD5 98ab5903d472e3896f6a2a9de83a2c86
BLAKE2b-256 4fa0acf8b6fc20bfdcd3a45bd3f57680fb198e157b7e997b9123b10763798bd2

See more details on using hashes here.

Provenance

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

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