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.6.3.tar.gz (64.1 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.6.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (586.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rpds_py-2026.6.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (623.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rpds_py-2026.6.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (558.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl (393.2 kB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (380.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (391.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (504.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (388.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (382.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (413.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rpds_py-2026.6.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (352.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rpds_py-2026.6.3-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (349.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

rpds_py-2026.6.3-cp315-cp315t-win_amd64.whl (220.7 kB view details)

Uploaded CPython 3.15tWindows x86-64

rpds_py-2026.6.3-cp315-cp315t-win32.whl (201.2 kB view details)

Uploaded CPython 3.15tWindows x86

rpds_py-2026.6.3-cp315-cp315t-musllinux_1_2_x86_64.whl (576.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

rpds_py-2026.6.3-cp315-cp315t-musllinux_1_2_i686.whl (614.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

rpds_py-2026.6.3-cp315-cp315t-musllinux_1_2_aarch64.whl (546.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

rpds_py-2026.6.3-cp315-cp315t-manylinux_2_31_riscv64.whl (380.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.31+ riscv64

rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (372.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl (385.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390x

rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (496.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64le

rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (376.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (370.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

rpds_py-2026.6.3-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (398.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

rpds_py-2026.6.3-cp315-cp315t-macosx_11_0_arm64.whl (340.3 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

rpds_py-2026.6.3-cp315-cp315t-macosx_10_12_x86_64.whl (346.9 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

rpds_py-2026.6.3-cp315-cp315-win_arm64.whl (215.9 kB view details)

Uploaded CPython 3.15Windows ARM64

rpds_py-2026.6.3-cp315-cp315-win_amd64.whl (220.4 kB view details)

Uploaded CPython 3.15Windows x86-64

rpds_py-2026.6.3-cp315-cp315-win32.whl (202.9 kB view details)

Uploaded CPython 3.15Windows x86

rpds_py-2026.6.3-cp315-cp315-musllinux_1_2_x86_64.whl (573.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

rpds_py-2026.6.3-cp315-cp315-musllinux_1_2_i686.whl (611.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

rpds_py-2026.6.3-cp315-cp315-musllinux_1_2_aarch64.whl (545.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

rpds_py-2026.6.3-cp315-cp315-manylinux_2_31_riscv64.whl (378.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.31+ riscv64

rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (367.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl (384.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390x

rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64le

rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (375.5 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (369.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

rpds_py-2026.6.3-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (396.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

rpds_py-2026.6.3-cp315-cp315-macosx_11_0_arm64.whl (339.6 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

rpds_py-2026.6.3-cp315-cp315-macosx_10_12_x86_64.whl (344.7 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

rpds_py-2026.6.3-cp314-cp314t-win_amd64.whl (220.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

rpds_py-2026.6.3-cp314-cp314t-win32.whl (201.1 kB view details)

Uploaded CPython 3.14tWindows x86

rpds_py-2026.6.3-cp314-cp314t-musllinux_1_2_x86_64.whl (576.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rpds_py-2026.6.3-cp314-cp314t-musllinux_1_2_i686.whl (613.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rpds_py-2026.6.3-cp314-cp314t-musllinux_1_2_aarch64.whl (546.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rpds_py-2026.6.3-cp314-cp314t-manylinux_2_31_riscv64.whl (379.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (371.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (384.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (494.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (376.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (370.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

rpds_py-2026.6.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (397.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

rpds_py-2026.6.3-cp314-cp314t-macosx_11_0_arm64.whl (340.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rpds_py-2026.6.3-cp314-cp314t-macosx_10_12_x86_64.whl (346.8 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

rpds_py-2026.6.3-cp314-cp314-win_arm64.whl (216.0 kB view details)

Uploaded CPython 3.14Windows ARM64

rpds_py-2026.6.3-cp314-cp314-win_amd64.whl (220.4 kB view details)

Uploaded CPython 3.14Windows x86-64

rpds_py-2026.6.3-cp314-cp314-win32.whl (202.5 kB view details)

Uploaded CPython 3.14Windows x86

rpds_py-2026.6.3-cp314-cp314-musllinux_1_2_x86_64.whl (573.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rpds_py-2026.6.3-cp314-cp314-musllinux_1_2_i686.whl (612.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rpds_py-2026.6.3-cp314-cp314-musllinux_1_2_aarch64.whl (545.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rpds_py-2026.6.3-cp314-cp314-manylinux_2_31_riscv64.whl (379.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (367.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (383.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (374.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (369.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rpds_py-2026.6.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (396.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

rpds_py-2026.6.3-cp314-cp314-macosx_11_0_arm64.whl (339.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rpds_py-2026.6.3-cp314-cp314-macosx_10_12_x86_64.whl (344.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rpds_py-2026.6.3-cp313-cp313-win_arm64.whl (215.1 kB view details)

Uploaded CPython 3.13Windows ARM64

rpds_py-2026.6.3-cp313-cp313-win_amd64.whl (219.5 kB view details)

Uploaded CPython 3.13Windows x86-64

rpds_py-2026.6.3-cp313-cp313-win32.whl (201.7 kB view details)

Uploaded CPython 3.13Windows x86

rpds_py-2026.6.3-cp313-cp313-musllinux_1_2_x86_64.whl (572.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rpds_py-2026.6.3-cp313-cp313-musllinux_1_2_i686.whl (611.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rpds_py-2026.6.3-cp313-cp313-musllinux_1_2_aarch64.whl (543.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rpds_py-2026.6.3-cp313-cp313-manylinux_2_31_riscv64.whl (377.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (382.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (490.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (374.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (368.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rpds_py-2026.6.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (395.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rpds_py-2026.6.3-cp313-cp313-macosx_11_0_arm64.whl (338.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rpds_py-2026.6.3-cp313-cp313-macosx_10_12_x86_64.whl (343.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rpds_py-2026.6.3-cp312-cp312-win_arm64.whl (215.8 kB view details)

Uploaded CPython 3.12Windows ARM64

rpds_py-2026.6.3-cp312-cp312-win_amd64.whl (220.4 kB view details)

Uploaded CPython 3.12Windows x86-64

rpds_py-2026.6.3-cp312-cp312-win32.whl (202.2 kB view details)

Uploaded CPython 3.12Windows x86

rpds_py-2026.6.3-cp312-cp312-musllinux_1_2_x86_64.whl (573.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rpds_py-2026.6.3-cp312-cp312-musllinux_1_2_i686.whl (611.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rpds_py-2026.6.3-cp312-cp312-musllinux_1_2_aarch64.whl (543.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rpds_py-2026.6.3-cp312-cp312-manylinux_2_31_riscv64.whl (377.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (366.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (382.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (490.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (375.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (368.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rpds_py-2026.6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (395.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

rpds_py-2026.6.3-cp312-cp312-macosx_11_0_arm64.whl (338.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rpds_py-2026.6.3-cp312-cp312-macosx_10_12_x86_64.whl (343.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rpds_py-2026.6.3-cp311-cp311-win_arm64.whl (219.1 kB view details)

Uploaded CPython 3.11Windows ARM64

rpds_py-2026.6.3-cp311-cp311-win_amd64.whl (223.2 kB view details)

Uploaded CPython 3.11Windows x86-64

rpds_py-2026.6.3-cp311-cp311-win32.whl (204.5 kB view details)

Uploaded CPython 3.11Windows x86

rpds_py-2026.6.3-cp311-cp311-musllinux_1_2_x86_64.whl (577.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rpds_py-2026.6.3-cp311-cp311-musllinux_1_2_i686.whl (615.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rpds_py-2026.6.3-cp311-cp311-musllinux_1_2_aarch64.whl (550.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rpds_py-2026.6.3-cp311-cp311-manylinux_2_31_riscv64.whl (383.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (371.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (386.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (499.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (378.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (373.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rpds_py-2026.6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (402.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rpds_py-2026.6.3-cp311-cp311-macosx_11_0_arm64.whl (345.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rpds_py-2026.6.3-cp311-cp311-macosx_10_12_x86_64.whl (342.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: rpds_py-2026.6.3.tar.gz
  • Upload date:
  • Size: 64.1 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.6.3.tar.gz
Algorithm Hash digest
SHA256 1cebd1337c242e4ec2293e541f712b2da849b29f48f0c293684b71c0632625d4
MD5 2901d4c65802a9e226d24c5ecf04aefb
BLAKE2b-256 aa2a9618a122aeb2a169a28b03889a2995fe297588964333d4a7d67bdf46e147

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e65860d238379ed982fd9ba690579b5e95af2f4840f99c772816dbe573cb826
MD5 f86d9aadd3be2438e0ec78211c00fe28
BLAKE2b-256 108548f0abdcef5cce4e034c7a5b0ceeceba0b01bf0d942824f4bb720afe2dec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca6546b66be9dc4738b1b043d5ebd5488c66c578c5ff0fd0e8065313fe3afb76
MD5 e55574e9e182ac505bfa679577d9d779
BLAKE2b-256 f64002355f0e134f783a8f9814c4680a1bd311d37671577a5964ea838573ff37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bfd04c19ddbd6640de0b51894d764bd2758854d5b75bd102d2ef10cb9c293a9
MD5 9500986ff664cc8746d0d252d5339c9d
BLAKE2b-256 9c970043896fdd7828ce09a1d9a8b06433714d0960fc4ff3fc4aa72b666b764e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 5e8d07bddee435a2ff6f1920e18feff28d0bc4533e42f4bf6927fbd073312c41
MD5 f58911ee3e5420a005830342147599a8
BLAKE2b-256 c9ba0efd8668b97c1d26a61566386c636a7a7a09829e474fdf807caa15a2c844

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3450b693fde92133e9f51060568a4c31fcca76d5e53bbd611e689ca446517e9
MD5 77f78ca58693dd387676014b9f7edca9
BLAKE2b-256 4e98af9b3db77d47fcbe6c8c1f36e2c2147ec70292819e99c325f871584a1c11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8bb68f03f395eb793220b45c097bd4d8c32944393da0fad8b999efac0868fc8c
MD5 cc70954b0af4dbdb15cda274900eaea7
BLAKE2b-256 0b1ba114b972cefa1ab1cdb3c7bb177cd3844a12826c507c722d3a73516dbbaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 127e08c0642d880cf32ca47ec2a4a77b901f7e2dd1ad9762adb13955d72ffcc9
MD5 65552b7d2d3c027275a5812332c178ce
BLAKE2b-256 d3f4921c22a4fd0f1c1ac13a3996ffbf0aa67951e2c8ad0d1d9574938a2932e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5c2dc92304aa48a4a60443b548bb12f12e119d4b72f314015e67b9e1be97fca
MD5 ee0b7db56c07c79597a6f79e58da4338
BLAKE2b-256 0d54ec0e907b4ca8d541112db352409bd15f871c9b243e0c92c9b5a46ae96f01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9891e594296ab9dada6551c8e7b387b2721f27a67eecd528412e8906247a7b90
MD5 279ca30ac310cbc0b3470b1026eb4124
BLAKE2b-256 ace5c0b5dc93cd0d4c06ce1f438907649514e2ea077bcd911e3154a51e96c38e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3a83ae6c67b7676b9878378547ca8e93ed77a580037bcbcd1d32f739e1e6089c
MD5 f143a6f7a815e0a431c4b481e45663c4
BLAKE2b-256 62908c139ee9690f73b0829f32647de6f40d826f8f443af6fa72644f96351aac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30c6dc199b24a5e3e81d50da0f00858c5bbdb2617a750395687f4339c5818171
MD5 1c9a6a366b4d69542d6e512677059cb9
BLAKE2b-256 38c71d49d204c9fd2ee6c537601dc4c1ba921e03363ca576bfab94a00254ac9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4cf2d36a2357e4d07bb5a4f98801265327b48256867816cfd2ceb001e9754a8f
MD5 892edd0918c51b3e578f79a1bd17d55b
BLAKE2b-256 b49cf0d19ac587fd0e4ab6b72cda355e9c5a6166b01ef7e064e437aef8eb9fef

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 220.7 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.6.3-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 ae3d4fe8c0b9213624fdce7279d70e3b148b682ca20719ebd193a23ebfa47324
MD5 a1588a042cac33e98eb75e39f8ee6f51
BLAKE2b-256 8c97d855d6b3c322d1f27e26f5241c42016b56cf01377ea8ed348285f54652f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 201.2 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.6.3-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 913ca42ccad3f8cc6e292b587ae8ae49c8c823e5dce51a736252fc7c7cdfa577
MD5 ddf5654c50d11a28dc08e358407331b0
BLAKE2b-256 ba7665002b08596c389105720a8c0d22298b8dc25a4baf89b2ce431343c8b1de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23a439f31ccbeff1574e24889128821d1f7917470e830cf6544dced1c662262a
MD5 f63656e635dcf51ecc7f985d824a1947
BLAKE2b-256 8b7114edf065f04630b1a8472f7653cad03f6c478bcf95ea0e6aed55451e33ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 faa679d19a6696fd54259ad321251ad77a13e70e03dd834daa762a44fb6196ef
MD5 26146c2638f7d509c710d3e78c137bbc
BLAKE2b-256 5533ba3bc04d7092bd553c9b2b195624992d2cc4f3de1f380b7b93cbee67bd79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0840b5b17057f7fd918b76183a4b5a0635f43e14eb2ce60dce1d4ee4707ea00
MD5 eb496fe7a9e5bbacbf42d841f7333a6a
BLAKE2b-256 970b776ffcb66783637b0031f6d58d6fb55913c8b5abf00aeecd46bf933fb477

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 808345f53cb952433ca2816f1604ff3515608a81784954f38d4452acfe8e61d5
MD5 c32179fed910341a4878d0b0a461a758
BLAKE2b-256 d3ac9cee911dff2aaa9a5a8354f6610bf2e6a616de9197c5fff4f54f82585f1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79486287de1730dbaff3dbd124d0ca4d2ef7f9d29bf2544f1f93c09b5bcbbd12
MD5 844613c3f6a997e2ad688f6c318929f2
BLAKE2b-256 e2ae7ec3a9d2d4351f99e37bcb06b6b6f954512646bfdbf9742e1de727865daf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f826877d462181e5eb1c26a0026b8d0cab05d99844ecb6d8bf3627a2ca0c0442
MD5 e8b7d31de8a4a8bcc693987cd62ba231
BLAKE2b-256 dff3f19e0c852ba13694f5a79f3b719331051573cb5693feacf8a88ffffc3a71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a136d453475ac0fcbda502ef1e6504bd28d6d904700915d278deeab0d00fe140
MD5 643e9ef14c9ad897cd5ca4b819afe424
BLAKE2b-256 6bde8a0814d1946af29cb068fb259aa8622f856df1d0bab58429448726b537f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d15fde0e6fb0d88a60d221204873743e5d9f0b7d29165e62cd86d0413ad74ba6
MD5 d22b9d13ff105b6f4f18eb6cdfd9bab0
BLAKE2b-256 2ee1df2a7e1ba2efd796af26194250b8d42c821b46592311595162af9ef0528d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b95977e7211527ab0ba576e286d023389fbeeb32a6b7b771665d333c60e5342
MD5 4d20beaaf321cbc22edc7289b6f2672d
BLAKE2b-256 6f2c8e03767b5778ef25cebf74a7a91a2c3806f8eced4c92cb7406bbe060756d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1967debc37f64f2c4dc90a7f563aec558b471966e12adcac4e1c4240496b6ebf
MD5 366e2ef24f9ccf76fc8f5513c118ddbc
BLAKE2b-256 836b7c2a07ba88d1e9a936612f7a5d067467ed03d971d5a06f7d309dff044a7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdbd97738551fca3917c1bd7188bec1920bb520104f28e7e1007f9ceb17b7690
MD5 f9eedd0a55788219e16e82d137232218
BLAKE2b-256 9d299907bdf1c5346763cf10b7f6852aad86652168c259def904cbe0082c5864

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae6dd8f10bd17aad820876d24caec9efdafd80a318d16c0a48edb5e136902c6b
MD5 0f5f72cdf85586b9326cb14ddb267248
BLAKE2b-256 b7bff3ea278f0afd615c1d0f19cb69043a41526e2bb600c2b536eb192218eb27

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 215.9 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.6.3-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 6e84adbcf4bf841aed8116a8264b9f50b4cb3e7bd89b516122e616ac56ca269e
MD5 78d78296c436c61932923e48df10444f
BLAKE2b-256 c895d6d0b2509825141eef60669a5739eec88dbc6a48053d6c92993a5704defe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 220.4 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.6.3-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 67e3a721ffc5d8d2210d3671872298c4a84e4b8035cfe42ffd7cde35d772b146
MD5 05a87acfc3df6dd7ee52d072d19f2ba7
BLAKE2b-256 eb62b577562de0edbb55b2be85ce5fd09c33e386b9b13eee09833af4240fd5c4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp315-cp315-win32.whl
  • Upload date:
  • Size: 202.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.6.3-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 d483fe17f01ad64b7bf7cc38fcefff1ca9fb83f8c2b2542b68f97ffe0611b369
MD5 8ae500be494c5cab613589232611588e
BLAKE2b-256 29714d8fcf700931815594bce892255bbd973b94efaf0fc1932b0590df18d886

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38a2fea2787428f811719ceb9114cb78964a3138838320c29ac39526c79c16ba
MD5 f5c677c13f99d367162c687f2a9d4c3d
BLAKE2b-256 68860c27547e21644da938fb530f7e1a8148dd24d02db07e7a5f2567a17ce710

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c60924535c75f1566b6eb75b5c31a48a43fef04fa2d0d201acbad8a9969c6107
MD5 c96eae09a1d12b818cf9ec10e9aa27be
BLAKE2b-256 591511a29755f790cef7a2f755e8e14f4f0c33f39489e1893a632a2eee59672b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24e9c5386e16669b674a69c156c8eeefcb578f3b3397b713b08e6d60f3c7b187
MD5 45a56c66a757b4da0dce3e361f62b814
BLAKE2b-256 c3cb99d77e16e5534ae1d90629bbe419ba6ee170833a6a85e3aa1cc41726fbbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 a9f4645593036b81bbdb36b9c8e0ea0d1c3fee968c4d59db0344c14087ef143a
MD5 f780b823793719268529b89c2d516791
BLAKE2b-256 a3ea1bb734f314b8be319149ddee80b18bd41372bdcfbdf88d28131c0cd37719

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e4320744c1ffdd95a603def63344bfab2d33edeab301c5007e7de9f9f5b3885
MD5 0c78d1f6e053598f27e7f7a87be4ca80
BLAKE2b-256 467dbf09bd1b145bb2671c03e1e6d1ab8651858d90d8c7dfeadd85a37a934fd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c2642a7603ec0b16ed77da4555db3b4b472341904873788327c0b0d7b95f1bb
MD5 845d81e9043d36916456547aedd9601a
BLAKE2b-256 b517de3f5a479a1f056535d7489819639d8cd591ea6281d700390b43b1abd745

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed0c1e5d10cdc7135537988c74a0188da68e2f3c30813ba3744ab1e42e0480f9
MD5 36031d6fedb3a921facab37dab58e61e
BLAKE2b-256 6a940aad06c72d65101e11d33528d438cda99a39ce0da99466e156158f2541d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f2e5c5ee828d42cb11760761c0af6507927bec42d0ad5458f97c9203b054617
MD5 a0947897f0b489f77abae76573080c43
BLAKE2b-256 76c2baf95c7c38823e12ba34407c5f5767a89e5cf2233895e56f608167ae9493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3086b538543802f84c843911242db20447de00d8752dd0efc936dbcf02218ba
MD5 23b253cee2e6a95afb50dd55dd191fc0
BLAKE2b-256 ec6410a85681916ca55fffb91b0a211f84e34297c109243484dd6394660a8a7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e55d236be29255554da47abe5c577637db7c24a02b8b46f0ca9524c855801868
MD5 4907fff50aec097f9a145fedd78c8705
BLAKE2b-256 4b93d9611e5b25e26df9a3649813ed66193ace9347a7c7fc4ab7cf70e94851c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f7c26fbc5acd2522b95d4177fe4710ffd8e9b20529e703ffbf8db4d93903f05
MD5 14c4862556de834143447dc407d40eec
BLAKE2b-256 c363e7b3a1a5358dd32c930a1062d8e15b67fd6e8922e81df9e91706d66ee5c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e059c5dde6452b44424bd1834557556c226b57781dee1227af23518459722b13
MD5 e1a3910b17492c5dbf85a017004a168b
BLAKE2b-256 08aef23a2697e6ee6340a578b0f136be6483657bef0c6f9497b752bb5c0964bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 220.6 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.6.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c7b9a2f8f4d8e90af72571d3d495deebdd7e3c75451f5b41719aee166e940fc2
MD5 2e8290dd9203e9260db09d757f7ec0ef
BLAKE2b-256 a6b29574d4d44f7760c2aa32d92a0a4f41698e33f5b204a0bf5c9758f52c79d5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 201.1 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.6.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6de4744d05bd1aa1be4ed7ea1189e3979196808008113bbbf899a460966b925e
MD5 b63d751737ccb7c7a085d28dd253da1e
BLAKE2b-256 f2f621101359743cd136ada781e8210a85769578422ba460672eea0e29739200

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea7bb13b7c9a29791f87a0387ba7d3ad3a6d783d827e4d3f27b40a0ff44495e2
MD5 3fcb3953d5481e1b4223f2d5fac80273
BLAKE2b-256 5bdee0674bdbc3ef7634989b3f854c3f34bc1f587d36e5bfdc5c378d57034619

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d34c20167764fbcf927194d532dd7e0c56772f0a5f943fa5ef9e9afbba8fb9db
MD5 6f5eddda396495918560b42bbd38f428
BLAKE2b-256 d3f20eb57f0eaa83f8fc152a7e03de968ab77e1f00732bebc892b190c6eebde7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 166cf54d9f44fc6ceb53c7860258dde44a81406646de79f8ed3234fca3b6e538
MD5 2d24606503e14bd0b07c8dfde60bf01d
BLAKE2b-256 f0958ed0cd8c377dca12aea498f119fe639fc474d1461545c39d2b5872eb1c0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 bc0011654b91cc4fb2ae701bec0a0ba1e552c0714247fa7af6c59e0ccfa3a4e1
MD5 993826e7db70b78613cc88ac1b66efdc
BLAKE2b-256 31866260bafa622f788b07ddec0e52d810305c8b9b0b8c27f58a2ab04bf62b4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 536bceea4fa4acf7e1c61da2b5786304367c816c8895be71b8f537c480b0ea1f
MD5 9c2fb5e26328e9de1baeeb248e7d57ca
BLAKE2b-256 8ef4b7ac49f30013aba8f7b9566b1dd07e81de95e708c1374b7bacc5b9bc5c9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9826217f048f620d9a712672818bf231442c1b35d96b227a07eabd11b4bb6945
MD5 8a65343607a29580bb6a8d67b3eb4d16
BLAKE2b-256 c9eb13d529d1788135425c7bf207f8463458ca5d92e43f3f701365b83e9dffc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af05d726809bff6b141be124d4c7ce998f9c9c7f30edb1f46c07aa103d540b41
MD5 fbe3682c941ca228405287cc7d77f2b9
BLAKE2b-256 81fca3bcf517084396a6dd258c592567a3c011ba4557f2fde23dceaf26e74f2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 29dfa0533a5d4c94d4dfa1b694fcb56c9c63aad8330ffdd816fd225d0a7a162f
MD5 218b6d44eb628fa441feeba1192445aa
BLAKE2b-256 f769af47021eb7dad6ff3396cb001c08f0f3c4d06c20253f75be6421a59fe6b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 afd70d95892096cdb26f15a00c45907b17817577aa8d1c76b2dcc2788391f9e9
MD5 f0d6fca30638bfcdb9cef6c093df49c1
BLAKE2b-256 873c7a9081c7c9e645b39efe19e4ffbeccd80add246327cd9b888aecffd72317

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 539d75de9e0d536c84ff18dfeb805398e58227001ce09231a26a08b9aed1ee0e
MD5 b43ee535bbe19fbe184c8e5681b3884c
BLAKE2b-256 19c303f1ee79a047b48daeca157c89a18509cde22b6b951d642b9b0af1be660a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec829541c45bca16e61c7ae50c20501f213605beb75d1aba91a6ee37fbbb56a4
MD5 5f07019435b426174af62220b7b58c06
BLAKE2b-256 e94477bcb1168b33704908295533d27f10eb811e9e3e193e8993dc99572211d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f90938e92afda60266da758ee7d363447f7f0138c9559f9e1811629580582d90
MD5 e0c99e8ed00f7cf8cf5e232eb375b949
BLAKE2b-256 799cfff7b74bce9a091ec9a012a03f9ff5f69364eaf9451060dfc4486da2ffdd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 216.0 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.6.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2a9c6f195058cb45335e8cc3802745c603d716eb96bc9625950c1aac71c0c703
MD5 95ecec79da0c7a6149ee4814a90a4233
BLAKE2b-256 3de7c2bd44dc831931815ad11ebb5f430b5a0a4d3caa9de837107876c30c3432

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 220.4 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.6.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0be972be84cfcaf46c8c6edf690ca0f154ac17babf1f6a955a51579b34ad2dc5
MD5 0272724e4645c75b76a5ccd4f605daa7
BLAKE2b-256 8562a3892ba945f4e24c78f352e5de3c7620d8479f73f211406a97263d13c7d2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 202.5 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.6.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 882076c00c0a608b131187055ddc5ae29f2e7eaf870d6168980420d58528a5c8
MD5 cdbd3fc7030853e62477a59caf424b64
BLAKE2b-256 87032a69ab618a789cf6cf85c86bb844c62d090e700ab1a2aa676b3741b6c516

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 639c8929aa0afe81be836b04de888460d6bed38b9c54cfc18da8f6bfabf5af5d
MD5 1ca8e1d297d52cd1d0652f8ee35873bd
BLAKE2b-256 e37a8a0e6d3e6cd066af108b71b43122c3fe158dd9eb86acac626593a2582eb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ea964164cc9afa72d4d9b23cc28dafae93693c0a53e0b42acbff15b22c3f9ddd
MD5 b7edefe2e2eb4f0fe07312ed06f3e81f
BLAKE2b-256 fdcce229663b9e4ddac5a4acbe9085dd80a71af2a5d356b8b39d6bff233f24b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4470ce197d4090875cf6affbf1f853338387428df97c4fb7b7106317b8214698
MD5 2254f7fa5b2ebb76f75179942b81a721
BLAKE2b-256 fb04aafff00f73aeca2945f734f1d483c64ab8f472d0864ab02377fd8e89c3b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 e4316bf32babbed84e691e352faf967ce2f0f024174a8643c37c94a1080374fc
MD5 dde03da6a063abbe734a4ef250e06298
BLAKE2b-256 c4fef0209ca4a9ed074bc8acb44dfd0e81c3122e94c9689f5645b7973a866719

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc319e5a1de4b6913aac94bf6a2f9e847371e0a140a43dd4991db1a09bc2d504
MD5 8b0f22f7d4a5044e57b706a5c4e2ab52
BLAKE2b-256 d19c0d1fdc2e7aba23e290d603bc494e97bd205bae262ce33c6b32a69768ed5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae50181a047c871561212bb97f7932a2d45fb53e947bd9b57ebad85b529cbc53
MD5 32e8470ffdf92033797a9ed27175266b
BLAKE2b-256 8f976908094ac804115e65aedfd90f1b5fee4eebebd3f6c4cfc5419939267565

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aca6c1ef08a82bfe327cc156da694660f599923e2e6665b6d81c9c2d0ac9ffc8
MD5 3617e5beb3d159a88b2aba8615c1768d
BLAKE2b-256 ef758964aa7d2c6e8ac43eba8eb6e6b0fdda1f46d39f2fc3e6aa9f2cb17f485d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 847927daf4cffbd4e90e42bc890069897101edd015f956cb8721b3473372edda
MD5 c28a077d16d16a2f5d920da99bfec8c0
BLAKE2b-256 964a9559a68b7ee15db09d7981212e8c2e219d2a1d6d4faa0391d813c3496a36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bcfbcf66006befb9fd2aeaa9e01feaf881b4dc330a02ba07d2322b1c11be7b5d
MD5 db10f752c8bb3e3f68ed8995617bb8b3
BLAKE2b-256 63efd4cdaf309e6b095b43597103cf8c0b951d6cca2acce68c474f75ec12e0c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8c6e5a2f750cc71c3e3b11d71661f21d6f9bc6cebc6564b1466417a1ec03ec77
MD5 6ab7858f0bb597fbe52546709691c90b
BLAKE2b-256 c68df1cc54c616b9d8897de8738aac148d20afca93f68187475fe194d09a71b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7469697dce35be237db177d42e2a2ee26e6dcc5fc052078a6fefabd288c6edd
MD5 2760d002c05231420bea06213d78ee62
BLAKE2b-256 ba54f785cc3d3f60839ca57a5af4927a9f347b07b2799c373fc20f7949f87c7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 931908d9fc855d8f74783377822be318edb6dcb19e47169dc038f9a1bf60b06e
MD5 485339466b3b9e0691727c6d44f1f9b3
BLAKE2b-256 b6367fbe9dcdaf857fb3f63c2a2284b62492d95f5e8334e947e5fb6e7f68c9be

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 215.1 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.6.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 900a67df3fd1660b035a4761c4ce73c382ea6b35f90f9863c36c6fd8bf8b09bb
MD5 2223b0ecfe4139f14c03519f992c0ddd
BLAKE2b-256 2717b8642c12930b71bc2b25831f6708ccf0f75abcd11883932ec9ce54ba3a78

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 219.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.6.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9250a9a0a6fd4648b3f868da8d91a4c52b5811a62df58e753d50ae4454a36f80
MD5 38c6f154d68a5a0b25e1224fb53a02b9
BLAKE2b-256 7beda03b09668e74e5dabbf2e211f6468e1820c0552f7b0500082da31841bf7b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 201.7 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.6.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8c3d1e9c15b9d51ca0391e13da1a25a0a4df3c58a37c9dc368e0736cf7f69df0
MD5 36f9040b247080c75538db60f6d50b2b
BLAKE2b-256 85edadab103321c0a6565d5ae1c2998349bc3ee175b82ccc5ae8fc04cc413075

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1cf01971c4f2c5553b772a542e4aaf191789cd331bc2cd4ff0e6e65ba49e1e97
MD5 fd919614059bcb4ed41f6f5208180271
BLAKE2b-256 1e165043105e679436ccfbc8e5e0dd2d663ed18a8b8113515fd06a5e5d77c83e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ccffae9a092a00deb7efd545fe5e2c33c33b88e7c054337e9a74c179347d0b7d
MD5 e04263f45fd27b7263665dfee287e0a2
BLAKE2b-256 acab289bcb1b90bd3e40a2900c561fa0e2087345ecbb094f0b870f2345142b7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f4bca01b63096f606e095734dd56e74e175f94cfbf24ff3d63281cec61f7bb7
MD5 72e4e19ea16946eacd85daa01d2cf1a2
BLAKE2b-256 1ff113968e49655d40b6b19d8b9140296bbc6f1d86b3f0f6c346cf9f1adddf4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 425560c6fa0415f27261727bb20bd097568485e5eb0c121f1949417d1c516885
MD5 a166f06025379fe32a02251bb0c1a405
BLAKE2b-256 699d1d8922e1990b2a6eb532b6ff53d3e73d2b3bbffc84116c75826bee73dfc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acac386b453c2516111b50985d60ce46e7fadb5ea71ae7b25f4c946935bf27cf
MD5 bb5f91a44e49046e25fd485145dea077
BLAKE2b-256 57d7fe978efc2ae50abe48eb7464668ea99f53c010c60aeebb7b35ad27f23661

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cdc7e35386f3847df728fbcb5e887e2d79c19e2fa1eba9e51b6621d23e3243af
MD5 cc196c0e976476eb02c4f62f9cfb43af
BLAKE2b-256 a342da06c5aa8f0484ff07f270787434204d9f4535e2f8c3b51ed402267e63c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8020133a74bd81b4572dd8e4be028a6b1ebcd70e6726edc3918008c08bee6ee6
MD5 f65b12dbf12ac5e1f65932e17d0c4c04
BLAKE2b-256 ee7d8071067d2cc453d916ad836e828c943f575e8a44612537759002a1e07381

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 842e7b070435622248c7a2c44ae53fa1440e073cc3023bc919fed570884097a7
MD5 5743b2f4026b5ba41380e6223a38d221
BLAKE2b-256 14db34c203e4becff3703e4d3bc121842c00b8689197f398161203a880052f4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54f45a148e28767bf343d33a684693c70e451c6f4c0e9904709a723fafbdfc1f
MD5 e62cde61b34b219f71b7d5555569cc37
BLAKE2b-256 9e9b069aa329940f8207615e091f5eedbbd40e1e15eac68a0790fd05ccdf796c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a550fb4950a06dde3beb4721f5ad4b25bf4513784665b0a8522c792e2bd822a4
MD5 85af8291af1c28ba8ce59984aedb3350
BLAKE2b-256 b13d198dceafb4fb034a6a47347e1b0735d34e0bd4a50be4e898d408ee66cb14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4d78253f6996be4901669ad25319f842f740eccf4d58e3c7f3dd39e6dde1d8f
MD5 c0c7e23e9d584204eab90730070629f6
BLAKE2b-256 f36b686d9dc4359a8f163cfbbf89ee0b4e586431de22fe8248edb63a8cf50d49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3cfe765c1da0072636ca06628261e0ea05688e160d5c8a03e0217c3854037223
MD5 258beceeb8d6910f1386abeb426ca0d0
BLAKE2b-256 a49eb818ee580026ec578138e961027a68820c40afeb1ec8f6819b54fb99e196

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 215.8 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.6.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 22bffe6042b9bcb0822bcd1955ec00e245daf17b4344e4ed8e9551b976b63e96
MD5 3d9f86cbe647164594e17b59238ffd4a
BLAKE2b-256 f3833382fe37f809b59f02aac04dbc4e765b480b46ee0227ed516e3bdc4d3dfc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 220.4 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.6.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2c958bf94822e9290a40aaf2a822d4bc5c88099093e3948ad6c571eca9272e5f
MD5 c9bc44366b3ffbbd086cd203beac80f0
BLAKE2b-256 043af0ee4d4dde9d3b69dedf1b5f74e7a40017046d55052d173e418c6a94f960

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 202.2 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.6.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 501f9f04a588d6a09179368c57071301445191767c64e4b52a6aa9871f1ef5ed
MD5 138904f8980defb6496cbd42c25097dc
BLAKE2b-256 c95022f73127a41f1ce4f87fe39aadfb9a126345801c274aa93ae88456249327

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a214c993455f99a89aaeadc9b21241900037adc9d97203e374d75513c5911822
MD5 a4962db08b3aa5305dee53b17d20147a
BLAKE2b-256 f131774212ed989c62f7f310220089f9b0a3fb8f40f5443d1727abd5d9f52bc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62698275682bf121181861295c9181e789030a2d516071f5b8f3c23c170cd0fc
MD5 69abf420d87a247426c6e988539a83b7
BLAKE2b-256 8fd6156c0d3eea27ba09b92562ba2364ba124c0a061b199e17eac637cd25a5e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c99f7e8ccb3dd6e3e4bfeac657a7b208c9bac8075f4b078c02d7404c34107fa
MD5 3a2ad24755ff0e5a3aee309df745930b
BLAKE2b-256 68a86ed52f03ee6cb854ce78785cc9a9a672eb880e83fd7224d471f667d151f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 58eadac9cd119677b60e1cf8ac4052f35949d71b8a9e5556efccbe82533cf22a
MD5 b94bb3bca3c18227618e264a757966f5
BLAKE2b-256 e32941a7b0e98a4b44cd676ab7598419623373eb43b20be68c084935c1a8cf88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecabd69db66de867690f9797f2f8fa27ba501bbc24540cbdbdc649cd15888ba6
MD5 d51a3b8d0c8a945efd7d5f3aa8e1651d
BLAKE2b-256 048fd2f3f532616be4d06c316ef119683e832bd3d41e112bf3a88f4151c95b17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 127565fead0a10943b282957bd5447804ff3160ad79f2ad2635e6d249e380680
MD5 ab1074bea04d95bd0e51920813770500
BLAKE2b-256 ceefeac16a12048b45ec7c7fa94f2be3438a5f26bf9cc8580b18a1cfd609b7f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 270b293dae9058fc9fcedab50f13cebf46fb8ed1d1d54e0521a9da5d6b211975
MD5 7b9ac687260ffe70d0689eba421d7805
BLAKE2b-256 87dc863f69d1bf04ade34b7fe0d59b9fdf6f0135fe2d7cbca74f1d665589559d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f56f1695bc5c0871cbc33dc0130fcf503aab0c57dcc5a6700a4f49eba4f2652e
MD5 63d2ed948b2edb67f9fd0d28c0f5ba6d
BLAKE2b-256 1cca9c5de382225234ceb37b1844ebdb140db12b2a278bb9efe2fcd19f6c82ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55927d532399c2c646100ff7feb48eaa940ad70f42cd68e1328f3ded9f81ca24
MD5 e4930a1bee2043d9099a00cc69a54d82
BLAKE2b-256 21634239893be1c4d09b709b1a8f6be4188f0870084ff547f46606b8a75f1b03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7491ee23305ac3eb59e492b6945881f5cd77a6f731061a3f25b77fd40f9e99a4
MD5 41bc067260d029502db9d1f21e6aab5e
BLAKE2b-256 2e05ecda0bec46f9a1565090bcdc941d023f6a25aff85fda28f89f8d19878152

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 538949e262e46caa31ac01bdb3c1e8f642622922cacbabbae6a8445d9dc33eaf
MD5 cb69e5798ff7f5b58fb2f22734f766c9
BLAKE2b-256 a473319dfa745dd668efe89309141ded489126461fcecd2b8f3a3cda185129b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a0811d33247c3d6128a3001d763f2aa056bb3425204335400ac54f89eec3a0d0
MD5 a337c5227ceaa40e8a7e7748256601ba
BLAKE2b-256 5cbe2e8974163072e7bab7df1a5acd54c4498e75e35d6d18b864d3a9d5dadc92

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 219.1 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.6.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 168c733a7112e071bb7a66460e667edfcff06c017a3c523f7a8a8e08d0140804
MD5 986766e168e03f7bb85bd0c3776b5cbc
BLAKE2b-256 d7a2145afacf796e4506062825941176ad9445c2dcf2b3b6a1f13d3030a15e19

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 223.2 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.6.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2c54a076ca4d370980ab57bc0e31df57bbe8d41340436a90ef8b1219a3cbb127
MD5 6493ab91d4658c678c56028bfd209e55
BLAKE2b-256 f2b7b7a1695d7af36f521fb11e80d6d3adbd744f73b921859bd3c2a2c0dc706f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rpds_py-2026.6.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 204.5 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.6.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 de3eceba0b683bcbb1ab93da016d0270df1f9ae7be716b40214c5dafac6ea45a
MD5 1f63961201f0409eef3f90b32175785b
BLAKE2b-256 c9e190ef639217a5ddb15b7f4f61b1c33911fd044ad03c311bafdd2bcab85582

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83e35b57523816c8613fd0776b40cd8bb9f596b37ddd2692eb4a6bb5ab2f8c93
MD5 5cb3e5eecec7bf26a92e7fda832e1a7a
BLAKE2b-256 b1801ea5873cb683f2fbe5f21b23ea1f6d179ead19f3c5b249b7eb5dca568ef2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e5822dfc2f0d4ab7e745eaa6d85945069329beeccef965af3f3bb26058fcab6
MD5 6c3bebfefa641fe1bcaca096c61dc92a
BLAKE2b-256 1ad05ee0fe36844297de8123bee27bc12078c1a7416ad9f1b8a8ca18d6b0c0ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 421aba32367055614287a4292b6a17f1939c9452299f7a0209c117e990b646d4
MD5 bbec2bccf204c3213fd11df7b4322f3a
BLAKE2b-256 2de321e5872d165fe08be4f229e3d5ee9d90019c0bf0e5538de60dbd54009450

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 8d2294a31386bfa251d8c8a39472beee17db67d4f1a6eabea665d35c9a4461c3
MD5 8bbd0caafc4e17d626be538e2fe40ad0
BLAKE2b-256 993c2b973b4d371906a134b03decfea7f5d9835a2c6d263454392e15b64b5b18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c1255b302953c86a486b81d330d5ee1d5bd937691ce271b6be0ef0e299eaab7
MD5 4abb59b7c3670b08b0cf0848ae2060e7
BLAKE2b-256 5e197e98f468bd50346faff5b10e5297374b443bfdddacc8e9fbc65984539597

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dfcc8b909769d19db55c7cc9541eb64b9b774b1057ffffb4f1048070475bb9f9
MD5 a25ab891811a1ccb0fe85534aee29dd8
BLAKE2b-256 2d9a41263969df0ce3d9af2a96d5005a288200af1989aed3354bfceb5fc0b21f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e52655eaf81e32593abedaa4bfe33170c8cfedf3365ed9be6e11e07f148f0278
MD5 868d0f8bf03454b2b3283bdfa408094c
BLAKE2b-256 226f81e3adf81acfb6fa694de2a6e4e7d8863121e3e0799e0a7725e6cf5679c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f88d653e7b3b779d71ae7454e20dcc9b6bae903f33c269db9f2be41bda3f261
MD5 576cbebd6632cbbe6e52cf1ba510c2a6
BLAKE2b-256 87fee80107ee3639585c9941c17d6a42cd65325022f656c023191fce78c324c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acc992ab27b15f852c76755eb2ab7dce86585ddadba6fa5946e58556088845b4
MD5 cf753f71d2ad0b82e2d62e90dc83a5e1
BLAKE2b-256 0b2ae31989834d18d2f26ec1d2774c5b1eb3331df4ea8ada525175294c94b48a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f8f23ead891a3b762f35ab3b04623da7056545b48aa60d59957e6789914545da
MD5 35d8a18c2e1ebc3be5ba3912cdcf9e35
BLAKE2b-256 982a12e2799500af0a307bca76b63361c51f9fe479223561489c29eea1f2ee41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db08f45aecde626498fb3df07bcf6d2ec040af42e859a4f5040d79c200342911
MD5 4292419195b87a19473936888be62f5d
BLAKE2b-256 4ddc323d08583c0832911768663d1944f0107fcd4088704858d84b5e06d105a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rpds_py-2026.6.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b689145a1485c335569bd056464f3243a29af7ed3871c7be31ad624ba239bc7
MD5 41dfd307268368307aba1e1cab8366fc
BLAKE2b-256 941fa2dca5ffdbf1d475ffc4e80e4d5d720ff3a00f691795910116960ee12511

See more details on using hashes here.

Provenance

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