diff options
| author | Eli Schwartz <eschwartz@gentoo.org> | 2025-09-01 14:17:07 -0400 |
|---|---|---|
| committer | Eli Schwartz <eschwartz@gentoo.org> | 2025-09-01 19:45:48 -0400 |
| commit | a4440640042cbac7b160ddd9a9c87321f33e399b (patch) | |
| tree | 0149d26031f917b42531c5ce6cb736a0dc1d8526 /dev-python | |
| parent | 9c427aa958201acbb1f280c17498d8cd623c5f77 (diff) | |
| download | gentoo-a4440640042cbac7b160ddd9a9c87321f33e399b.tar.gz gentoo-a4440640042cbac7b160ddd9a9c87321f33e399b.tar.bz2 gentoo-a4440640042cbac7b160ddd9a9c87321f33e399b.zip | |
dev-python/rpds-py: fix minimum rust version for stable ebuild too
Tried to install rpds-py in a chroot, and due to PYTHON_TARGETS I didn't
hit the binhost:
```
failed to parse manifest at `/var/tmp/portage/dev-python/rpds-py-0.25.1/work/cargo_home/gentoo/rpds-1.1.1/Cargo.toml`
Caused by:
feature `edition2024` is required
The package requires the Cargo feature called `edition2024`, but that feature is not stabilized in this version of Cargo (1.84.1 (66221abde 2024-11-19)).
```
Bug: https://bugs.gentoo.org/961458
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
Diffstat (limited to 'dev-python')
| -rw-r--r-- | dev-python/rpds-py/rpds-py-0.25.1.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-python/rpds-py/rpds-py-0.25.1.ebuild b/dev-python/rpds-py/rpds-py-0.25.1.ebuild index a32b2eab8b40..5df63d3cfcbb 100644 --- a/dev-python/rpds-py/rpds-py-0.25.1.ebuild +++ b/dev-python/rpds-py/rpds-py-0.25.1.ebuild @@ -34,7 +34,7 @@ CRATES=" unindent@0.2.4 " -RUST_MIN_VER="1.77.1" +RUST_MIN_VER="1.85.0" inherit cargo distutils-r1 pypi |
