Skip to main content

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

Project description

PyPI version Supported Python versions Build status

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

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

Installation

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

$ pip install rpds-py

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

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

Usage

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

>>> from rpds import HashTrieMap, HashTrieSet, List

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

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

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

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

rpds_py-0.27.1.tar.gz (27.5 kB view details)

Uploaded Source

Built Distributions

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

rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (556.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (590.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (560.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl (402.1 kB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (385.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (403.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (523.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (394.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (419.3 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rpds_py-0.27.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (354.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rpds_py-0.27.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (371.4 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

rpds_py-0.27.1-pp310-pypy310_pp73-win_amd64.whl (229.1 kB view details)

Uploaded PyPyWindows x86-64

rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (556.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (590.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (560.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_31_riscv64.whl (402.1 kB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (385.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (403.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (524.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (394.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (419.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rpds_py-0.27.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (353.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rpds_py-0.27.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (371.4 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

rpds_py-0.27.1-pp39-pypy39_pp73-win_amd64.whl (228.8 kB view details)

Uploaded PyPyWindows x86-64

rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (556.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (590.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (559.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_31_riscv64.whl (401.8 kB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (522.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (394.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (382.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (419.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

rpds_py-0.27.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (354.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rpds_py-0.27.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (371.8 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

rpds_py-0.27.1-cp314-cp314t-win_amd64.whl (230.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

rpds_py-0.27.1-cp314-cp314t-win32.whl (217.4 kB view details)

Uploaded CPython 3.14tWindows x86

rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_x86_64.whl (555.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_i686.whl (588.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_aarch64.whl (557.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rpds_py-0.27.1-cp314-cp314t-manylinux_2_31_riscv64.whl (400.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (403.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (522.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (391.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (380.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

rpds_py-0.27.1-cp314-cp314t-macosx_11_0_arm64.whl (342.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rpds_py-0.27.1-cp314-cp314t-macosx_10_12_x86_64.whl (358.9 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

rpds_py-0.27.1-cp314-cp314-win_arm64.whl (223.1 kB view details)

Uploaded CPython 3.14Windows ARM64

rpds_py-0.27.1-cp314-cp314-win_amd64.whl (233.7 kB view details)

Uploaded CPython 3.14Windows x86-64

rpds_py-0.27.1-cp314-cp314-win32.whl (221.9 kB view details)

Uploaded CPython 3.14Windows x86

rpds_py-0.27.1-cp314-cp314-musllinux_1_2_x86_64.whl (558.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rpds_py-0.27.1-cp314-cp314-musllinux_1_2_i686.whl (592.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

rpds_py-0.27.1-cp314-cp314-musllinux_1_2_aarch64.whl (562.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

rpds_py-0.27.1-cp314-cp314-manylinux_2_31_riscv64.whl (407.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

rpds_py-0.27.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

rpds_py-0.27.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (408.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

rpds_py-0.27.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (523.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

rpds_py-0.27.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (399.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

rpds_py-0.27.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

rpds_py-0.27.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (423.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

rpds_py-0.27.1-cp314-cp314-macosx_11_0_arm64.whl (345.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rpds_py-0.27.1-cp314-cp314-macosx_10_12_x86_64.whl (362.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

rpds_py-0.27.1-cp313-cp313t-win_amd64.whl (228.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

rpds_py-0.27.1-cp313-cp313t-win32.whl (216.7 kB view details)

Uploaded CPython 3.13tWindows x86

rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_x86_64.whl (555.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_i686.whl (587.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_aarch64.whl (557.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

rpds_py-0.27.1-cp313-cp313t-manylinux_2_31_riscv64.whl (399.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.31+ riscv64

rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (521.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (380.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

rpds_py-0.27.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (414.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

rpds_py-0.27.1-cp313-cp313t-macosx_11_0_arm64.whl (342.1 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

rpds_py-0.27.1-cp313-cp313t-macosx_10_12_x86_64.whl (358.4 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

rpds_py-0.27.1-cp313-cp313-win_arm64.whl (222.4 kB view details)

Uploaded CPython 3.13Windows ARM64

rpds_py-0.27.1-cp313-cp313-win_amd64.whl (232.0 kB view details)

Uploaded CPython 3.13Windows x86-64

rpds_py-0.27.1-cp313-cp313-win32.whl (221.5 kB view details)

Uploaded CPython 3.13Windows x86

rpds_py-0.27.1-cp313-cp313-musllinux_1_2_x86_64.whl (557.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rpds_py-0.27.1-cp313-cp313-musllinux_1_2_i686.whl (592.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

rpds_py-0.27.1-cp313-cp313-musllinux_1_2_aarch64.whl (562.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

rpds_py-0.27.1-cp313-cp313-manylinux_2_31_riscv64.whl (405.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

rpds_py-0.27.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (386.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

rpds_py-0.27.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (407.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

rpds_py-0.27.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (524.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

rpds_py-0.27.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (398.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

rpds_py-0.27.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

rpds_py-0.27.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (422.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

rpds_py-0.27.1-cp313-cp313-macosx_11_0_arm64.whl (345.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rpds_py-0.27.1-cp313-cp313-macosx_10_12_x86_64.whl (361.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

rpds_py-0.27.1-cp312-cp312-win_arm64.whl (222.8 kB view details)

Uploaded CPython 3.12Windows ARM64

rpds_py-0.27.1-cp312-cp312-win_amd64.whl (232.5 kB view details)

Uploaded CPython 3.12Windows x86-64

rpds_py-0.27.1-cp312-cp312-win32.whl (221.3 kB view details)

Uploaded CPython 3.12Windows x86

rpds_py-0.27.1-cp312-cp312-musllinux_1_2_x86_64.whl (558.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rpds_py-0.27.1-cp312-cp312-musllinux_1_2_i686.whl (593.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

rpds_py-0.27.1-cp312-cp312-musllinux_1_2_aarch64.whl (562.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

rpds_py-0.27.1-cp312-cp312-manylinux_2_31_riscv64.whl (405.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

rpds_py-0.27.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (386.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rpds_py-0.27.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (407.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

rpds_py-0.27.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (526.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

rpds_py-0.27.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (399.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

rpds_py-0.27.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

rpds_py-0.27.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (423.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

rpds_py-0.27.1-cp312-cp312-macosx_10_12_x86_64.whl (361.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

rpds_py-0.27.1-cp311-cp311-win_arm64.whl (221.0 kB view details)

Uploaded CPython 3.11Windows ARM64

rpds_py-0.27.1-cp311-cp311-win_amd64.whl (228.6 kB view details)

Uploaded CPython 3.11Windows x86-64

rpds_py-0.27.1-cp311-cp311-win32.whl (217.2 kB view details)

Uploaded CPython 3.11Windows x86

rpds_py-0.27.1-cp311-cp311-musllinux_1_2_x86_64.whl (555.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rpds_py-0.27.1-cp311-cp311-musllinux_1_2_i686.whl (589.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

rpds_py-0.27.1-cp311-cp311-musllinux_1_2_aarch64.whl (558.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

rpds_py-0.27.1-cp311-cp311-manylinux_2_31_riscv64.whl (401.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

rpds_py-0.27.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rpds_py-0.27.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

rpds_py-0.27.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (523.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

rpds_py-0.27.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (394.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

rpds_py-0.27.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (381.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

rpds_py-0.27.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (418.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

rpds_py-0.27.1-cp311-cp311-macosx_11_0_arm64.whl (353.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rpds_py-0.27.1-cp311-cp311-macosx_10_12_x86_64.whl (371.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

rpds_py-0.27.1-cp310-cp310-win_amd64.whl (228.4 kB view details)

Uploaded CPython 3.10Windows x86-64

rpds_py-0.27.1-cp310-cp310-win32.whl (217.4 kB view details)

Uploaded CPython 3.10Windows x86

rpds_py-0.27.1-cp310-cp310-musllinux_1_2_x86_64.whl (554.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rpds_py-0.27.1-cp310-cp310-musllinux_1_2_i686.whl (589.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

rpds_py-0.27.1-cp310-cp310-musllinux_1_2_aarch64.whl (558.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

rpds_py-0.27.1-cp310-cp310-manylinux_2_31_riscv64.whl (401.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

rpds_py-0.27.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rpds_py-0.27.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

rpds_py-0.27.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (523.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

rpds_py-0.27.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (394.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

rpds_py-0.27.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (381.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

rpds_py-0.27.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (417.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

rpds_py-0.27.1-cp310-cp310-macosx_11_0_arm64.whl (353.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rpds_py-0.27.1-cp310-cp310-macosx_10_12_x86_64.whl (371.6 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

rpds_py-0.27.1-cp39-cp39-win_amd64.whl (228.7 kB view details)

Uploaded CPython 3.9Windows x86-64

rpds_py-0.27.1-cp39-cp39-win32.whl (217.9 kB view details)

Uploaded CPython 3.9Windows x86

rpds_py-0.27.1-cp39-cp39-musllinux_1_2_x86_64.whl (555.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rpds_py-0.27.1-cp39-cp39-musllinux_1_2_i686.whl (589.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

rpds_py-0.27.1-cp39-cp39-musllinux_1_2_aarch64.whl (559.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

rpds_py-0.27.1-cp39-cp39-manylinux_2_31_riscv64.whl (401.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ riscv64

rpds_py-0.27.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rpds_py-0.27.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (403.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

rpds_py-0.27.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (522.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

rpds_py-0.27.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (394.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

rpds_py-0.27.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (382.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

rpds_py-0.27.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (418.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

rpds_py-0.27.1-cp39-cp39-macosx_11_0_arm64.whl (354.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rpds_py-0.27.1-cp39-cp39-macosx_10_12_x86_64.whl (372.1 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1.tar.gz
Algorithm Hash digest
SHA256 26a1c73171d10b7acccbded82bf6a586ab8203601e565badc74bbbf8bc5a10f8
MD5 41581e4b264e630e9d87f1793666a164
BLAKE2b-256 e9dd2c0cbe774744272b0ae725f44032c77bdcab6e8bcf544bffa3b6e70c8dba

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc23e6820e3b40847e2f4a7726462ba0cf53089512abe9ee16318c366494c17a
MD5 8b9e14c82dcec8eb493ec68133406290
BLAKE2b-256 ce084349bdd5c64d9d193c360aa9db89adeee6f6682ab8825dca0a3f535f434f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df8b74962e35c9249425d90144e721eed198e6555a0e22a563d29fe4486b51f6
MD5 6216d6b4ede9203e38089e426dab24f7
BLAKE2b-256 26caf5a344c534214cc2d41118c0699fffbdc2c1bc7046f2a2b9609765ab9c92

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 94c44ee01fd21c9058f124d2d4f0c9dc7634bec93cd4b38eefc385dabe71acbf
MD5 bfc5aecca51e25bbba899ebfc0b3069b
BLAKE2b-256 6a24e3e72d265121e00b063aef3e3501e5b2473cf1b23511d56e529531acf01e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 4848ca84d6ded9b58e474dfdbad4b8bfb450344c0551ddc8d958bf4b36aa837c
MD5 2bd12834cedd2a7efa4773afc5196a3d
BLAKE2b-256 e16229c0d3e5125c3270b51415af7cbff1ec587379c84f55a5761cc9efa8cd06

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aaf94f812c95b5e60ebaf8bfb1898a7d7cb9c1af5744d4a67fa47796e0465d4e
MD5 7116e4f8d22489638d2ede6ad5d36aa4
BLAKE2b-256 cf3546936cca449f7f518f2f4996e0e8344db4b57e2081e752441154089d2a5f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 387ce8c44ae94e0ec50532d9cb0edce17311024c9794eb196b90e1058aadeb66
MD5 c68c2bfa776e049583e1a56c2f50f363
BLAKE2b-256 a8ef70cc197bc11cfcde02a86f36ac1eed15c56667c2ebddbdb76a47e90306da

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 93a2ed40de81bcff59aabebb626562d48332f3d028ca2036f1d23cbb52750be4
MD5 b5246a9a3525b293b459793c054d8e58
BLAKE2b-256 b328be120586874ef906aa5aeeae95ae8df4184bc757e5b6bd1c729ccff45ed5

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c64d07e95606ec402a0a1c511fe003873fa6af630bda59bac77fac8b4318ebc
MD5 616f5c9ffadf8f19c25767e3187a5edd
BLAKE2b-256 1f2789070ca9b856e52960da1472efcb6c20ba27cfe902f4f23ed095b9cfc61d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eda8719d598f2f7f3e0f885cba8646644b55a187762bec091fa14a2b819746a9
MD5 10a2904b990763124c9468f8720e4f05
BLAKE2b-256 dec1ade645f55de76799fdd08682d51ae6724cb46f318573f18be49b1e040428

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2bde09cbcf2248b73c7c323be49b280180ff39fadcfe04e7b6f54a678d02a7cf
MD5 ef35904368daf2332a92860f1627af9d
BLAKE2b-256 8f6603e1087679227785474466fdd04157fb793b3b76e3fcf01cbf4c693c1949

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fabb8fd848a5f75a2324e4a84501ee3a5e3c78d8603f83475441866e60b94a3
MD5 56b781e6e6d797c2ca15c497fbe4b899
BLAKE2b-256 af7ce16b959b316048b55585a697e94add55a4ae0d984434d279ea83442e460d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cdfe4bb2f9fe7458b7453ad3c33e726d6d1c7c0a72960bcc23800d77384e42df
MD5 ff4cde7ec30018e8f09057ac1e742bee
BLAKE2b-256 0cede1fba02de17f4f76318b834425257c8ea297e415e12c68b4361f63e8ae92

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c796c0c1cc68cb08b0284db4229f5af76168172670c74908fdbd4b7d7f515819
MD5 76dc4b2f1f2c27ed21b7be75886b8ee6
BLAKE2b-256 e1b792b6ed9aad103bfe1c45df98453dfae40969eef2cb6c6239c58d7e96f1b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3adc388fc3afb6540aec081fa59e6e0d3908722771aa1e37ffe22b220a436f0b
MD5 99f09830ba52c64e2260be6cf26b62a9
BLAKE2b-256 1200ccfaafaf7db7e7adace915e5c2f2c2410e16402561801e9c7f96683002d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d807710df3b5faa66c731afa162ea29717ab3be17bdc15f90f2d9f183da4059
MD5 3e2372a18ce6c07df6deb9dfbf7fe310
BLAKE2b-256 6666bb945683b958a1b19eb0fe715594630d0f36396ebdef4d9b89c2fa09aa56

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 879b0e14a2da6a1102a3fc8af580fc1ead37e6d6692a781bd8c83da37429b5ab
MD5 c7dc81605bdfd48f9b440cff3104c1c5
BLAKE2b-256 8e7e83a508f6b8e219bba2d4af077c35ba0e0cdd35a751a3be6a7cba5a55ad71

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 530064db9146b247351f2a0250b8f00b289accea4596a033e94be2389977de71
MD5 b4bd2669469f2d84457b3ae44ee96741
BLAKE2b-256 eb1a1a04a915ecd0551bfa9e77b7672d1937b4b72a0fc204a17deef76001cfb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23f6b69d1c26c4704fec01311963a41d7de3ee0570a84ebde4d544e5a1859ffc
MD5 5b56607a3de57fffaf0ce291341abbae
BLAKE2b-256 c093425e32200158d44ff01da5d9612c3b6711fe69f606f06e3895511f17473b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b002cab05d6339716b03a4a3a2ce26737f6231d7b523f339fa061d53368c9d8
MD5 0f115c192bc10f69a09e879d509ad587
BLAKE2b-256 a9af2cbf56edd2d07716df1aec8a726b3159deb47cb5c27e1e42b71d705a7c2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb7c72262deae25366e3b6c0c0ba46007967aea15d1eea746e44ddba8ec58dcc
MD5 c96277f4cfd53e8aeeb98e7ead673417
BLAKE2b-256 022db1d7f928b0b1f4fc2e0133e8051d199b01d7384875adc63b6ddadf3de7e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d7ff07d696a7a38152ebdb8212ca9e5baab56656749f3d6004b34ab726b550b8
MD5 d7d2f3b5f689a1e59902a43392e69f56
BLAKE2b-256 ccc9a839b9f219cf80ed65f27a7f5ddbb2809c1b85c966020ae2dff490e0b18e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb08b65b93e0c6dd70aac7f7890a9c0938d5ec71d5cb32d45cf844fb8ae47636
MD5 10e06f4a62d6897b649aed3165db1ea8
BLAKE2b-256 9b851bb2210c1f7a1b99e91fea486b9f0f894aa5da3a5ec7097cbad7dec6d40f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7b90b0496570bd6b0321724a330d8b545827c4df2034b6ddfc5f5275f55da2ad
MD5 609cc8fa9a1374b3406fb7858ed0abbf
BLAKE2b-256 51f766585c0fe5714368b62951d2513b684e5215beaceab2c6629549ddb15036

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b640501be9288c77738b5492b3fd3abc4ba95c50c2e41273c8a1459f08298d3
MD5 1e2064aa1323a36ef72537abcc08f7ff
BLAKE2b-256 e58c12e1b24b560cf378b8ffbdb9dc73abd529e1adcfcf82727dfd29c4a7b88d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ba22cb9693df986033b91ae1d7a979bc399237d45fccf875b76f62bb9e52ddf
MD5 bb06d6d403b52c7c2d11c4e06c693d17
BLAKE2b-256 d563b7cc415c345625d5e62f694ea356c58fb964861409008118f1245f8c3347

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4fc9b7fe29478824361ead6e14e4f5aed570d477e06088826537e202d25fe859
MD5 3ebc7a27000ade66fadd7914cfd6ff7c
BLAKE2b-256 6094384cf54c430b9dac742bbd2ec26c23feb78ded0d43d6d78563a281aec017

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp39-pypy39_pp73-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c426b99a068601b5f4623573df7a7c3d72e87533a2dd2253353a03e7502566c
MD5 d3ab481090de2acc04e31a24cac76f15
BLAKE2b-256 d806c316d3f6ff03f43ccb0eba7de61376f8ec4ea850067dddfafe98274ae13c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7e32721e5d4922deaaf963469d795d5bde6093207c52fec719bd22e5d1bedbc4
MD5 4f5e4ef34b41d0c178b9da9a92d36c0f
BLAKE2b-256 407f8b7b136069ef7ac3960eda25d832639bdb163018a34c960ed042dd1707c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a63b640a7845f2bdd232eb0d0a4a2dd939bcdd6c57e6bb134526487f3160ec5
MD5 283d2ea006806cda599268fe20701768
BLAKE2b-256 a3695af37e1d71487cf6d56dd1420dc7e0c2732c1b6ff612aa7a88374061c0a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 a55b9132bb1ade6c734ddd2759c8dc132aa63687d259e725221f106b83a0e485
MD5 6d80afb24c85fdfc86dd2dc019ad1ce2
BLAKE2b-256 d60ada0813efcd998d260cbe876d97f55b0f469ada8ba9cbc47490a132554540

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 008b839781d6c9bf3b6a8984d1d8e56f0ec46dc56df61fd669c49b58ae800400
MD5 bcb4921fbc6b6922cf921e91e23cdefa
BLAKE2b-256 0f0e237948c1f425e23e0cf5a566d702652a6e55c6f8fbd332a1792eb7043daf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8177002868d1426305bb5de1e138161c2ec9eb2d939be38291d7c431c4712df8
MD5 5e26a81d395bb20eab235ce5eb8088cd
BLAKE2b-256 360d8d5bb122bf7a60976b54c5c99a739a3819f49f02d69df3ea2ca2aff47d5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2f6fd8a1cea5bbe599b6e78a6e5ee08db434fc8ffea51ff201c8765679698b3
MD5 51737c07912cb39be6fde24722087a62
BLAKE2b-256 748a9e62693af1a34fd28b1a190d463d12407bd7cf561748cb4745845d9548d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 70d0738ef8fee13c003b100c2fbd667ec4f133468109b3472d249231108283a3
MD5 d6c92e02293545d8601ea74e271e61bd
BLAKE2b-256 8a3fef23d3c1be1b837b648a3016d5bbe7cfe711422ad110b4081c0a90ef5a53

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78af06ddc7fe5cc0e967085a9115accee665fb912c22a3f54bad70cc65b05fe6
MD5 d9bcfcb659ec55645238f8bbf30cb1e7
BLAKE2b-256 7d79b76f97704d9dd8ddbd76fed4c4048153a847c5d6003afe20a6b5c3339065

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a46fdec0083a26415f11d5f236b79fa1291c32aaa4a17684d82f7017a1f818b1
MD5 125806909f51fa4498f4609e953b11ae
BLAKE2b-256 5178c6c9e8a8aaca416a6f0d1b6b4a6ee35b88fe2c5401d02235d0a056eceed2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a50431bf02583e21bf273c71b89d710e7a710ad5e39c725b14e685610555926f
MD5 9cf2f032899e63b984a3ede5dd4391f5
BLAKE2b-256 0dc8f38c099db07f5114029c1467649d308543906933eebbc226d4527a5f4693

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa8933159edc50be265ed22b401125c9eebff3171f570258854dbce3ecd55475
MD5 fca79244ac1a330db2b1f318aec01556
BLAKE2b-256 4eea5463cd5048a7a2fcdae308b6e96432802132c141bfb9420260142632a0f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6567d2bb951e21232c2f660c24cf3470bb96de56cdcb3f071a83feeaff8a2772
MD5 6efcaa018e0f8c1317ee26e3dce57a28
BLAKE2b-256 327d97119da51cb1dd3f2f3c0805f155a3aa4a95fa44fe7d78ae15e69edf4f34

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d5fa0ee122dc09e23607a28e6d7b150da16c662e66409bbe85230e4c85bb528a
MD5 1a44fc2748d12038271fd4b4c70b857b
BLAKE2b-256 042e30b5ea18c01379da6272a92825dd7e53dc9d15c88a19e97932d35d430ef7

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f39f58a27cc6e59f432b568ed8429c7e1641324fbe38131de852cd77b2d534b0
MD5 45f4cb3017dbef144bef89c16a580c68
BLAKE2b-256 dd106b283707780a81919f71625351182b4f98932ac89a09023cb61865136244

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf9931f14223de59551ab9d38ed18d92f14f055a5f78c1d8ad6493f735021bbb
MD5 e205364091d0ca0406dc250fadb9ad14
BLAKE2b-256 3f3692cc885a3129993b1d963a2a42ecf64e6a8e129d2c7cc980dbeba84e55fb

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42a89282d711711d0a62d6f57d81aa43a1368686c45bc1c46b7f079d55692734
MD5 eee78f0f7541e03b51489036c0e37623
BLAKE2b-256 d46456dd03430ba491db943a81dcdef115a985aac5f44f565cd39a00c766d45c

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 639fd5efec029f99b79ae47e5d7e00ad8a773da899b6309f6786ecaf22948c48
MD5 d9b419aafc9b4eb33a1aba2ae1b1365b
BLAKE2b-256 c056d5265d2d28b7420d7b4d4d85cad8ef891760f5135102e60d5c970b976e41

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b207d881a9aef7ba753d69c123a35d96ca7cb808056998f6b9e8747321f03b8
MD5 7c0297c8726784a77f965ed945a28922
BLAKE2b-256 1c4bfb6c4f14984eb56673bc868a66536f53417ddb13ed44b391998100a06a96

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f2729615f9d430af0ae6b36cf042cb55c0936408d543fb691e1a9e36648fd35a
MD5 9d19a8ae27d676d24593c1380ac45bab
BLAKE2b-256 e4441a3b9715c0455d2e2f0f6df5ee6d6f5afdc423d0773a8a682ed2b43c566c

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fed467af29776f6556250c9ed85ea5a4dd121ab56a5f8b206e3e7a4c551e48ec
MD5 c6f205cc69cafe8ac36921e0d0bee1ea
BLAKE2b-256 b471b19401a909b83bcd67f90221330bc1ef11bc486fe4e04c24388d28a618ae

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62f85b665cedab1a503747617393573995dac4600ff51869d69ad2f39eb5e817
MD5 1c4de9ed941c2db14ee99fed00514640
BLAKE2b-256 a27d4c6d243ba4a3057e994bb5bedd01b5c963c12fe38dde707a52acdb3849e7

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9e960fc78fecd1100539f14132425e1d5fe44ecb9239f8f27f079962021523e
MD5 9a0e03d63858c05f44ed8278f5baba95
BLAKE2b-256 1c152a7c619b3c2272ea9feb9ade67a45c40b3eeb500d503ad4c28c395dc51b4

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fecc80cb2a90e28af8a9b366edacf33d7a91cbfe4c2c4544ea1246e949cfebeb
MD5 579c309311177ea734913af851b14664
BLAKE2b-256 8fe99f5fc70164a569bdd6ed9046486c3568d6926e3a49bdefeeccfb18655875

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84f7d509870098de0e864cad0102711c1e24e9b1a50ee713b65928adb22269e4
MD5 a919ff2d89107ab0be08d665b2fe0d24
BLAKE2b-256 e6224af76ac4e9f336bfb1a5f240d18a33c6b2fcaadb7472ac7680576512b49a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba81d2b56b6d4911ce735aad0a1d4495e808b8ee4dc58715998741a26874e7c2
MD5 8a147e7f184791153d876ebb3317f6bc
BLAKE2b-256 627edc7931dc2fa4a6e46b2a4fa744a9fe5c548efd70e0ba74f40b39fa4a8c10

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 faf8d146f3d476abfee026c4ae3bdd9ca14236ae4e4c310cbd1cf75ba33d24a3
MD5 5aa90c2e70a5e91b340ddbb852d17c9c
BLAKE2b-256 c8893e1b1c16d4c2d547c5717377a8df99aee8099ff050f87c45cb4d5fa70891

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a6e57b0abfe7cc513450fcf529eb486b6e4d3f8aee83e92eb5f1ef848218d456
MD5 a8bbe34c4fb82622fa02d37030ac14b5
BLAKE2b-256 be07c802bc6b8e95be83b79bdf23d1aa61d68324cb1006e245d6c58e959e314d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 dfbfac137d2a3d0725758cd141f878bf4329ba25e34979797c89474a89a8a3a3
MD5 687848767771f5a778fca2ed877d0a9c
BLAKE2b-256 c5d699228e6bbcf4baa764b18258f519a9035131d91b538d4e0e294313462a98

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ce0cac322b0d69b63c9cdb895ee1b65805ec9ffad37639f291dd79467bee675
MD5 52aae53c17f2f44e6b174605642f6741
BLAKE2b-256 ff39c09fd1ad28b85bc1d4554a8710233c9f4cefd03d7717a1b8fbfd171d1167

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1476d6f29eb81aa4151c9a31219b03f1f798dc43d8af1250a870735516a1212
MD5 10da4940318218fd39e216cd6ec54c0a
BLAKE2b-256 04035159321baae9b2222442a70c1f988cbbd66b9be0675dd3936461269be360

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dce51c828941973a5684d458214d3a36fcd28da3e1875d659388f4f9f12cc33e
MD5 f44100d165582572870d81ce9849b60d
BLAKE2b-256 4b8e1c2741307fcabd1a334ecf008e92c4f47bb6f848712cf15c923becfe82bb

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ee4308f409a40e50593c7e3bb8cbe0b4d4c66d1674a316324f0c2f5383b486f9
MD5 ffd1c94c4230d3ab1dc919b80f9fb0e3
BLAKE2b-256 7c92cf786a15320e173f945d205ab31585cc43969743bb1a48b6888f7a2b0a2d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12ed005216a51b1d6e2b02a7bd31885fe317e45897de81d86dcce7d74618ffff
MD5 662de1161c080400e261ba80a29b2e4e
BLAKE2b-256 901acdb5083f043597c4d4276eae4e4c70c55ab5accec078da8611f24575a367

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf876e79763eecf3e7356f157540d6a093cef395b65514f17a356f62af6cc136
MD5 cb7785268ac99326796c6c69fe572fae
BLAKE2b-256 052c30eebca20d5db95720ab4d2faec1b5e4c1025c473f703738c371241476a2

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed090ccd235f6fa8bb5861684567f0a83e04f52dfc2e5c05f2e4b1309fcf85e7
MD5 b70b5db389486b4a61dc3cbe7d7faf96
BLAKE2b-256 20515829afd5000ec1cb60f304711f02572d619040aa3ec033d8226817d1e571

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b6dfb0e058adb12d8b1d1b25f686e94ffa65d9995a5157afe99743bf7369d62b
MD5 66333a74e2cedc9e1f33f820c0d1b501
BLAKE2b-256 05cd7eb6dd7b232e7f2654d03fa07f1414d7dfc980e82ba71e40a7c46fd95484

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe0dd05afb46597b9a2e11c351e5e4283c741237e7f617ffb3252780cca9336a
MD5 86b33daca33bc048a886cdbb9d349198
BLAKE2b-256 b0162f1003ee5d0af4bcb13c0cf894957984c32a6751ed7206db2aee7379a55e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b08d152555acf1f455154d498ca855618c1378ec810646fcd7c76416ac6dc60
MD5 fb98ea850259cfc06da0c04ac6ecdae0
BLAKE2b-256 335c85ee16df5b65063ef26017bef33096557a4c83fbe56218ac7cd8c235f16d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7fb801aa7f845ddf601c49630deeeccde7ce10065561d92729bfe81bd21fb33
MD5 f3b78437646c1eebb19a6b5589266e8d
BLAKE2b-256 af07b4646032e0dcec0df9c73a3bd52f63bc6c5f9cda992f06bd0e73fe3fbebd

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 acb9aafccaae278f449d9c713b64a9e68662e7799dbd5859e2c6b3c67b56d334
MD5 11496dcebb9493b0e083ea10ffbafa8e
BLAKE2b-256 7036b6e6066520a07cf029d385de869729a895917b411e777ab1cde878100a1d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 8ee50c3e41739886606388ba3ab3ee2aae9f35fb23f833091833255a31740797
MD5 bb4f2394e48b47cc8a5eca6648a620b2
BLAKE2b-256 21873fc94e47c9bd0742660e84706c311a860dcae4374cf4a03c477e23ce605a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 3020724ade63fe320a972e2ffd93b5623227e684315adce194941167fee02688
MD5 c1b8a10e50ca26d04b39aea0b33b739e
BLAKE2b-256 e5ee375469849e6b429b3516206b4580a79e9ef3eb12920ddbd4492b56eaacbe

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd2135527aa40f061350c3f8f89da2644de26cd73e4de458e79606384f4f68e7
MD5 4642c63016038c46895d61633dd10100
BLAKE2b-256 86e384507781cccd0145f35b1dc32c72675200c5ce8d5b30f813e49424ef68fc

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13e608ac9f50a0ed4faec0e90ece76ae33b34c0e8656e3dceb9a7db994c692cd
MD5 66eb103c1efdf61877fd32dd316b7b71
BLAKE2b-256 60f3690dd38e2310b6f68858a331399b4d6dbb9132c3e8ef8b4333b96caf403d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb11a4f1b2b63337cfd3b4d110af778a59aae51c81d195768e353d8b52f88081
MD5 42e3a396717174646d275e5c0522e035
BLAKE2b-256 3fdb6d498b844342deb3fa1d030598db93937a9964fcf5cb4da4feb5f17be34b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 d76f9cc8665acdc0c9177043746775aa7babbf479b5520b78ae4002d889f5c21
MD5 47f0c86c5af4a3850bf74ecbb68624f2
BLAKE2b-256 5477ac339d5f82b6afff1df8f0fe0d2145cc827992cb5f8eeb90fc9f31ef7a63

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0dc5dceeaefcc96dc192e3a80bbe1d6c410c469e97bdd47494a7d930987f18b2
MD5 a3c44ed6082b5e23f9e358a4f8960a23
BLAKE2b-256 cbb0f4e224090dc5b0ec15f31a02d746ab24101dd430847c4d99123798661bfc

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 08f1e20bccf73b08d12d804d6e1c22ca5530e71659e6673bce31a6bb71c1e73f
MD5 cf30d5409b5d1cbf1d7b3a1e631fae41
BLAKE2b-256 e53e50fb1dac0948e17a02eb05c24510a8fe12d5ce8561c6b7b7d1339ab7ab9c

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f5b7bd8e219ed50299e58551a410b64daafb5017d54bbe822e003856f06a802
MD5 08f091355e2724038d5ec233631a508a
BLAKE2b-256 3a06005106a7b8c6c1a7e91b73169e49870f4af5256119d34a361ae5240a0c1d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e48af21883ded2b3e9eb48cb7880ad8598b31ab752ff3be6457001d78f416723
MD5 61b4342f2ef7aa8a558b79633ccaf8f4
BLAKE2b-256 d6a4d9cef5c3946ea271ce2243c51481971cd6e34f21925af2783dd17b26e815

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb89bec23fddc489e5d78b550a7b773557c9ab58b7946154a10a6f7a214a48b2
MD5 4e03a87948831a2dd8b45cd7b204021a
BLAKE2b-256 1a77355b1c041d6be40886c44ff5e798b4e2769e497b790f0f7fd1e78d17e9a8

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 134fae0e36022edad8290a6661edf40c023562964efea0cc0ec7f5d392d2aaef
MD5 1684a5e8bf67ea47836386d6c2d73076
BLAKE2b-256 d6293e1c255eee6ac358c056a57d6d6869baa00a62fa32eea5ee0632039c50a3

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47162fdab9407ec3f160805ac3e154df042e577dd53341745fc7fb3f625e6d92
MD5 14089b6b2f1df5916db712ded72c2142
BLAKE2b-256 c36fbf142541229374287604caf3bb2a4ae17f0a580798fd72d3b009b532db4e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 92022bbbad0d4426e616815b16bc4127f83c9a74940e1ccf3cfe0b387aba0228
MD5 dd2f9f9f2fb5fa5ee6d77007f118a42c
BLAKE2b-256 01761cdf1f91aed5c3a7bf2eba1f1c4e4d6f57832d73003919a20118870ea659

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ed10dc32829e7d222b7d3b93136d25a406ba9788f6a7ebf6809092da1f4d279d
MD5 99289a98efb6c1b0eff8cd7006b28ccf
BLAKE2b-256 c7783958f3f018c01923823f1e47f1cc338e398814b92d83cd278364446fac66

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f9025faafc62ed0b75a53e541895ca272815bec18abe2249ff6501c8f2e12b83
MD5 210cab30ceb3e755393c4521e4b96c93
BLAKE2b-256 ce2c5867b14a81dc217b56d95a9f2a40fdbc56a1ab0181b80132beeecbd4b2d6

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4f75e4bd8ab8db624e02c8e2fc4063021b58becdbe6df793a8111d9343aec1e3
MD5 a2fc5f685ed8a3a858d4c0b1a1f7eb32
BLAKE2b-256 00953c863973d409210da7fb41958172c6b7dbe7fc34e04d3cc1f10bb85e979f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d992ac10eb86d9b6f369647b6a3f412fc0075cfd5d799530e84d335e440a002
MD5 cd9ed9b9ffbf0235dd28a2f1c273d1c8
BLAKE2b-256 10bb82e64fbb0047c46a168faa28d0d45a7851cd0582f850b966811d30f67ad8

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 67ce7620704745881a3d4b0ada80ab4d99df390838839921f99e63c474f82cf2
MD5 44caa14468530f67d522bd3c7d7b7462
BLAKE2b-256 b2923c0cb2492094e3cd9baf9e49bbb7befeceb584ea0c1a8b5939dca4da12e5

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a75f305c9b013289121ec0f1181931975df78738cdf650093e6b86d74aa7d8dd
MD5 2f385a923a9bbbb4aac27bfaff22da78
BLAKE2b-256 6b865f4c707603e41b05f191a749984f390dabcbc467cf833769b47bf14ba04f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 15d3b4d83582d10c601f481eca29c3f138d44c92187d197aff663a269197c02d
MD5 f46c630165b4cdafcc9d460ccb74855a
BLAKE2b-256 3b038c897fb8b5347ff6c1cc31239b9611c5bf79d78c984430887a353e1409a1

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2efe4eb1d01b7f5f1939f4ef30ecea6c6b3521eec451fb93191bf84b2a522418
MD5 ec3d8155b69a99c2f432b56e11b56d5f
BLAKE2b-256 03360a14aebbaa26fe7fab4780c76f2239e76cc95a0090bdb25e31d95c492fcd

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c46c9dd2403b66a2a3b9720ec4b74d4ab49d4fabf9f03dfdce2d42af913fe8d0
MD5 bfec58f50fa1276ee197dff64566d728
BLAKE2b-256 8701a670c232f401d9ad461d9a332aa4080cd3cb1d1df18213dbd0d2a6a7ab51

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae92443798a40a92dc5f0b01d8a7c93adde0c4dc965310a29ae7c64d72b9fad2
MD5 eb3e7485d8d6b741c2546072f743ddf5
BLAKE2b-256 82959dc227d441ff2670651c27a739acb2535ccaf8b351a88d78c088965e5996

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d78827d7ac08627ea2c8e02c9e5b41180ea5ea1f747e9db0915e3adf36b62dcf
MD5 b461ccf19f9b01e2594da03411b3a821
BLAKE2b-256 fde81e430fe311e4799e02e2d1af7c765f024e95e17d651612425b226705f910

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55266dafa22e672f5a4f65019015f90336ed31c6383bd53f5e7826d21a0e0b83
MD5 17a621291089150b7f91286b98b48793
BLAKE2b-256 2042ee2b2ca114294cd9847d0ef9c26d2b0851b2e7e00bf14cc4c0b581df0fc3

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4ed2e16abbc982a169d30d1a420274a709949e2cbdef119fe2ec9d870b42f274
MD5 1e9ecf9476b4ec353087f0de36c4e8bd
BLAKE2b-256 da0788c60edc2df74850d496d78a1fdcdc7b54360a7f610a4d50008309d41b94

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1441811a96eadca93c517d08df75de45e5ffe68aa3089924f963c782c4b898cf
MD5 d4b5336f2e431dc306de064aca174ff8
BLAKE2b-256 3afcc43765f201c6a1c60be2043cbdb664013def52460a4c7adace89d6682bf4

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e4b9fcfbc021633863a37e92571d6f91851fa656f0180246e84cbd8b3f6b329b
MD5 421816e2134a68bca94c934687bbd58c
BLAKE2b-256 cc77610aeee8d41e39080c7e14afa5387138e3c9fa9756ab893d09d99e7d8e98

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 33aa65b97826a0e885ef6e278fbd934e98cdcfed80b63946025f01e2f5b29502
MD5 4a4c3373527c9f714e02c30920c6bffb
BLAKE2b-256 e1962817b44bd2ed11aebacc9251da03689d56109b9aba5e311297b6902136e2

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d9199717881f13c32c4046a15f024971a3b78ad4ea029e8da6b86e5aa9cf4594
MD5 fef3c60f2f18447163c0c9eb70eb2176
BLAKE2b-256 67b6c82f0faa9af1c6a64669f73a17ee0eeef25aff30bb9a1c318509efe45d84

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 819064fa048ba01b6dadc5116f3ac48610435ac9a0058bbde98e569f9e785c39
MD5 ddacec67d29a5cb12f4c2daa421b6df7
BLAKE2b-256 6e966772cbfa0e2485bcceef8071de7821f81aeac8bb45fbfd5542a3e8108165

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a512c8263249a9d68cac08b05dd59d2b3f2061d99b322813cbcc14c3c7421998
MD5 3e298e501f2f4bdc15fc4e5ed0ee5483
BLAKE2b-256 11739d7a8f4be5f4396f011a6bb7a19fe26303a0dac9064462f5651ced2f572f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ee6521b9baf06085f62ba9c7a3e5becffbc32480d2f1b351559c001c38ce4c1
MD5 b1daa96ef1e96356a6a0883513180d22
BLAKE2b-256 b56c6943a91768fec16db09a42b08644b960cff540c66aab89b74be6d4a144ba

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 80c60cfb5310677bd67cb1e85a1e8eb52e12529545441b43e6f14d90b878775a
MD5 771aba2d252e60d5c0421a32c2f3b08e
BLAKE2b-256 acba3c4978b54a73ed19a7d74531be37a8bcc542d917c770e14d372b8daea186

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 41e532bbdcb57c92ba3be62c42e9f096431b4cf478da9bc3bc6ce5c38ab7ba7a
MD5 0301d008fa7a7ee9d43491756a848a58
BLAKE2b-256 864728fa6d60f8b74fcdceba81b272f8d9836ac0340570f68f5df6b41838547b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 466bfe65bd932da36ff279ddd92de56b042f2266d752719beb97b08526268ec5
MD5 ea9084c98c21588497c476abc5354e5d
BLAKE2b-256 ed7b8f4fee9ba1fb5ec856eb22d725a4efa3deb47f769597c809e03578b0f9d9

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5c20f33fd10485b80f65e800bbe5f6785af510b9f4056c5a3c612ebc83ba6cb
MD5 ff880a3869331f4ae7183704f9e4fbd1
BLAKE2b-256 2214c85e8127b573aaf3a0cbd7fbb8c9c99e735a4a02180c84da2a463b766e9e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ba32c16b064267b22f1850a34051121d423b6f7338a12b9459550eb2096e7ec
MD5 b08c67e9e7161f416c4a73d30d7cb7eb
BLAKE2b-256 2c0a26dc43c8840cb8fe239fe12dbc8d8de40f2365e838f3d395835dde72f0e5

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a1f4814b65eacac94a00fc9a526e3fdafd78e439469644032032d0d63de4881
MD5 7f80b35d40a6c1591d9ab5a788938e5a
BLAKE2b-256 1beab306067a712988e2bff00dcc7c8f31d26c29b6d5931b461aa4b60a013e33

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16323f674c089b0360674a4abd28d5042947d54ba620f72514d69be4ff64845e
MD5 2e5fb6e1b81cb3fed4f4366bfd20255d
BLAKE2b-256 6f0ee650e1b81922847a09cca820237b0edee69416a01268b7754d506ade11ad

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f149826d742b406579466283769a8ea448eed82a789af0ed17b0cd5770433444
MD5 7e33f9c15cb3994acdd08b90ac7b96be
BLAKE2b-256 d0fdc5987b5e054548df56953a21fe2ebed51fc1ec7c8f24fd41c067b68c4a0a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2643400120f55c8a96f7c9d858f7be0c88d383cd4653ae2cf0d0c88f668073e5
MD5 130aad9cbf5a62899dad39552b659c78
BLAKE2b-256 7c9a4b6c7eedc7dd90986bf0fab6ea2a091ec11c01b15f8ba0a14d3f80450468

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae2775c1973e3c30316892737b91f9283f9908e3cc7625b9331271eaaed7dc90
MD5 e62e4163ef87a808a6965d22a3bc5bd0
BLAKE2b-256 bdfe38de28dee5df58b8198c743fe2bea0c785c6d40941b9950bac4cdb71a014

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2f57af9b4d0793e53266ee4325535a31ba48e2f875da81a9177c9926dfa60746
MD5 83f627f4dd09bd5cb371bde9fdea7c60
BLAKE2b-256 8d3f4fd04c32abc02c710f09a72a30c9a55ea3cc154ef8099078fd50a0596f8e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b4938466c6b257b2f5c4ff98acd8128ec36b5059e5c8f8372d79316b1c36bb15
MD5 ba3def0e7d57a0f1a00188ec21b19abe
BLAKE2b-256 24753b7ffe0d50dc86a6a964af0d1cc3a4a2cdf437cb7b099a4747bbb96d1819

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3182af66048c00a075010bc7f4860f33913528a4b6fc09094a6e7598e462fe39
MD5 710afb794b6674e712efc0ab878b3a32
BLAKE2b-256 b2d50b2a55415931db4f112bdab072443ff76131b5ac4f4dc98d10d2d357eb03

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 689fb5200a749db0415b092972e8eba85847c23885c8543a8b0f5c009b1a5948
MD5 659d961a030f98664c7fc7879c8d6560
BLAKE2b-256 7b0eae1c8943d11a814d01b482e1f8da903f88047a962dff9bbdadf3bd6e6fd1

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a205fdfe55c90c2cd8e540ca9ceba65cbe6629b443bc05db1f590a3db8189ff9
MD5 f974fbff8449feed8cdbf39767874c58
BLAKE2b-256 3abb1db4781ce1dda3eecc735e3152659a27b90a02ca62bfeea17aee45cc0fbc

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ffce0481cc6e95e5b3f0a47ee17ffbd234399e6d532f394c8dce320c3b089c21
MD5 359d2c6f3a28e19dd0582e3b2beb71de
BLAKE2b-256 666d87507430a8f74a93556fe55c6485ba9c259949a853ce407b1e23fea5ba31

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 d252f2d8ca0195faa707f8eb9368955760880b2b42a8ee16d382bf5dd807f89a
MD5 3cb42bf0f31724e6eeb22cffe18bee91
BLAKE2b-256 aee1dc9094d6ff566bff87add8a510c89b9e158ad2ecd97ee26e677da29a9e1b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb56c6210ef77caa58e16e8c17d35c63fe3f5b60fd9ba9d424470c3400bcf9ed
MD5 c19c75bd5b5e0284211c1a3046e05e49
BLAKE2b-256 f54864cabb7daced2968dd08e8a1b7988bf358d7bd5bcd5dc89a652f4668543c

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 168b025f8fd8d8d10957405f3fdcef3dc20f5982d398f90851f4abc58c566c52
MD5 8fd1d581a0412e6b233aec47656ae8cc
BLAKE2b-256 9fe5059b9f65a8c9149361a8b75094864ab83b94718344db511fd6117936ed2a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b507d19f817ebaca79574b16eb2ae412e5c0835542c93fe9983f1e432aca195
MD5 4a1b4b194c6ebc32c267f9226e83b197
BLAKE2b-256 5a7e4bd610754bf492d398b61725eb9598ddd5eb86b07d7d9483dbcd810e20bc

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 abfa1171a9952d2e0002aba2ad3780820b00cc3d9c98c6630f2e93271501f66c
MD5 f3a1b5d11940c5de5e7dc7f54e6196d0
BLAKE2b-256 aef4ef95c5945e2ceb5119571b184dd5a1cc4b8541bbdf67461998cfeac9cb1e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4708c5c0ceb2d034f9991623631d3d23cb16e65c83736ea020cdbe28d57c0a0e
MD5 947c6fc20879599a1ca47c75c28c6c03
BLAKE2b-256 3a57f5eb3ecf434342f4f1a46009530e93fd201a0b5b83379034ebdb1d7c1a58

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6e5e54da1e74b91dbc7996b56640f79b195d5925c2b78efaa8c5d53e1d88edde
MD5 7aafab3b34144fb39b761a7ce23233b5
BLAKE2b-256 378eac8577e3ecdd5593e283d46907d7011618994e1d7ab992711ae0f78b9937

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62ac3d4e3e07b58ee0ddecd71d6ce3b1637de2d373501412df395a0ec5f9beb5
MD5 91449caa872b0a310ef537fc18f946c4
BLAKE2b-256 11942aab4bc86228bcf7c48760990273653a4900de89c7537ffe1b0d6097ed39

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 be898f271f851f68b318872ce6ebebbc62f303b654e43bf72683dbdc25b7c881
MD5 1265bb00b3ffe544744ed7b117a0f90b
BLAKE2b-256 b5c17907329fbef97cbd49db6f7303893bd1dd5a4a3eae415839ffdfb0762cae

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3e039aabf6d5f83c745d5f9a0a381d031e9ed871967c0a5c38d201aca41f3ba1
MD5 b41b032585e4676368d75bcff0e17fb2
BLAKE2b-256 753d6bef47b0e253616ccdf67c283e25f2d16e18ccddd38f92af81d5a3420206

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

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

File hashes

Hashes for rpds_py-0.27.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ee5422d7fb21f6a00c1901bf6559c49fee13a5159d0288320737bbf6585bd3e4
MD5 0f8aa8c7b4bdeeff4ab821ff8d51d784
BLAKE2b-256 de41905cc90ced13550db017f8f20c6d8e8470066c5738ba480d7ba63e3d136b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f4461bf931108c9fa226ffb0e257c1b18dc2d44cd72b125bec50ee0ab1248a9
MD5 a040499af39e7ca2491b2dcfc13bd716
BLAKE2b-256 c85e26abb098d5e01266b0f3a2488d299d19ccc26849735d9d2b95c39397e945

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd6cd0485b7d347304067153a6dc1d73f7d4fd995a396ef32a24d24b8ac63ac8
MD5 1d62fef41f64cf4dee556ed94ea0ace7
BLAKE2b-256 6f8c1b0de79177c5d5103843774ce12b84caa7164dfc6cd66378768d37db11bf

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a3f29aba6e2d7d90528d3c792555a93497fe6538aa65eb675b44505be747808
MD5 02c0d1aa5c68b20dbc102add6c6ac335
BLAKE2b-256 e3a08cb5c2ff38340f221cc067cc093d1270e10658ba4e8d263df923daa18e86

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 3deab27804d65cd8289eb814c2c0e807c4b9d9916c9225e363cb0cf875eb67c1
MD5 b51ac0832d4e68b699960832c1572c37
BLAKE2b-256 69f7f47ff154be8d9a5e691c083a920bba89cef88d5247c241c10b9898f595a1

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50c946f048209e6362e22576baea09193809f87687a95a8db24e5fbdb307b93a
MD5 bff8c17f54538803a5f51c78be0794f4
BLAKE2b-256 0aecef8bf895f0628dd0a59e54d81caed6891663cb9c54a0f4bb7da918cb88cf

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3d905d16f77eb6ab2e324e09bfa277b4c8e5e6b8a78a3e7ff8f3cdf773b4c013
MD5 c958fd523576fda6866298d819c3dc46
BLAKE2b-256 c459c1bc2be32564fa499f988f0a5c6505c2f4746ef96e58e4d7de5cf923d77e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2e7f8f169d775dd9092a1743768d771f1d1300453ddfe6325ae3ab5332b4657
MD5 e4cbc1d1b6249c9d4d47a8a571e463a2
BLAKE2b-256 ac2e36a6861f797530e74bb6ed53495f8741f1ef95939eed01d761e73d559067

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 31d3ebadefcd73b73928ed0b2fd696f7fefda8629229f81929ac9c1854d0cffb
MD5 1c02fd9d9aa2fd0f969dbe1694f34253
BLAKE2b-256 5abce89581d1f9d1be7d0247eaef602566869fdc0d084008ba139e27e775366c

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9024de74731df54546fab0bfbcdb49fae19159ecaecfc8f37c18d2c7e2c0bd61
MD5 d64d04bb9bfc0f2919b5d5a860ff70c5
BLAKE2b-256 99c7d2a110ffaaa397fc6793a83c7bd3545d9ab22658b7cdff05a24a4535cc45

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8b61097f7488de4be8244c89915da8ed212832ccf1e7c7753a25a394bf9b1f10
MD5 f2468da079c3c150fcc3d61cd1bcff5f
BLAKE2b-256 3bd9ca410363efd0615814ae579f6829cafb39225cd63e5ea5ed1404cb345293

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74e5b2f7bb6fa38b1b10546d27acbacf2a022a8b5543efb06cfebc72a59c85be
MD5 242d6ffc1b17b9eb898649eb7aacabe7
BLAKE2b-256 6d829818b443e5d3eb4c83c3994561387f116aae9833b35c484474769c4a8faf

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

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

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68afeec26d42ab3b47e541b272166a0b4400313946871cba3ed3a4fc0cab1cef
MD5 b3e059f110d9aecf05685d6f2d619123
BLAKE2b-256 a5ed3aef893e2dd30e77e35d20d4ddb45ca459db59cead748cad9796ad479411

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rpds_py-0.27.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 228.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rpds_py-0.27.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 71108900c9c3c8590697244b9519017a400d9ba26a36c48381b3f64743a44aab
MD5 30f4b2df1b456434e1fcc7c86a063cf6
BLAKE2b-256 5be0d75ab7b4dd8ba777f6b365adbdfc7614bbfe7c5f05703031dfa4b61c3d6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-cp39-cp39-win_amd64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: rpds_py-0.27.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 217.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rpds_py-0.27.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9e71f5a087ead99563c11fdaceee83ee982fd39cf67601f4fd66cb386336ee52
MD5 514d96e87c2b3db289b17398dfdf771b
BLAKE2b-256 52d7cd9c36215111aa65724c132bf709c6f35175973e90b32115dedc4ced09cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-cp39-cp39-win32.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f41f814b8eaa48768d1bb551591f6ba45f87ac76899453e8ccd41dba1289b04b
MD5 83fd13a2d655984ff67f2985292800e6
BLAKE2b-256 ee9e5560a4b39bab780405bed8a88ee85b30178061d189558a86003548dea045

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e202e6d4188e53c6661af813b46c37ca2c45e497fc558bacc1a7630ec2695aec
MD5 46e1e5fb56a3d5ab72a83c9489781ea1
BLAKE2b-256 19b276fa15173b6f9f445e5ef15120871b945fb8dd9044b6b8c7abe87e938416

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e44099bd522cba71a2c6b97f68e19f40e7d85399de899d66cdb67b32d7cb786
MD5 6c6cdc0d809e0bb3013358f137ac261c
BLAKE2b-256 33396554a7fd6d9906fda2521c6d52f5d723dca123529fb719a5b5e074c15e01

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-cp39-cp39-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp39-cp39-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 c4b676c4ae3921649a15d28ed10025548e9b561ded473aa413af749503c6737e
MD5 3f7f9b50fa443dcfe653198bd0bcde2a
BLAKE2b-256 8fe3fbb409e18aeefc01e49f5922ac63d2d914328430e295c12183ce56ebf76b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-cp39-cp39-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fd50659a069c15eef8aa3d64bbef0d69fd27bb4a50c9ab4f17f83a16cbf8905
MD5 774bfaf3ed7c06cb661aee83fb4c3ba5
BLAKE2b-256 74e55903f92e41e293b07707d5bf00ef39a0eb2af7190aff4beaf581a6591510

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5281ed1cc1d49882f9997981c88df1a22e140ab41df19071222f7e5fc4e72125
MD5 bd311a4596f299aacec96fac8a54e2a5
BLAKE2b-256 4455ccf37ddc4c6dce7437b335088b5ca18da864b334890e2fe9aa6ddc3f79a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 037a2361db72ee98d829bc2c5b7cc55598ae0a5e0ec1823a56ea99374cfd73c1
MD5 50d07dc74ef79731d8ad53aa7ca4d3c7
BLAKE2b-256 671f4cfef98b2349a7585181e99294fa2a13f0af06902048a5d70f431a66d0b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c2a8fed130ce946d5c585eddc7c8eeef0051f58ac80a8ee43bd17835c144c2cc
MD5 7aef521e5df0d6f2d42af058f98a9e31
BLAKE2b-256 d005b0fdeb5b577197ad72812bbdfb72f9a08fa1e64539cc3940b1b781cd3596

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbf94c58e8e0cd6b6f38d8de67acae41b3a515c26169366ab58bdca4a6883bb8
MD5 8f5dae5a2af37b100071d4bde3477612
BLAKE2b-256 9f02e43e332ad8ce4f6c4342d151a471a7f2900ed1d76901da62eb3762663a71

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 079bc583a26db831a985c5257797b2b5d3affb0386e7ff886256762f82113b5e
MD5 81fd1683149e7822f97aeb0e1952576e
BLAKE2b-256 5579529ad07794e05cb0f38e2f965fc5bb20853d523976719400acecc447ec9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fea2b1a922c47c51fd07d656324531adc787e415c8b116530a1d29c0516c62d
MD5 9cbc40aef8178b8040ca593dca9fee6d
BLAKE2b-256 9d71949c195d927c5aeb0d0629d329a20de43a64c423a6aa53836290609ef7ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for rpds_py-0.27.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: CI.yml on crate-py/rpds

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

File details

Details for the file rpds_py-0.27.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rpds_py-0.27.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c918c65ec2e42c2a78d19f18c553d77319119bf43aa9e2edf7fb78d624355527
MD5 07e94139dc7a286ae3d7864d42aa03fa
BLAKE2b-256 7f6c252e83e1ce7583c81f26d1d884b2074d40a13977e1b6c9c50bbf9a7f1f5a

See more details on using hashes here.

Provenance

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