From 57ad4fda70b3a4533d576cef9f354ce8cd306af2 Mon Sep 17 00:00:00 2001 From: Avi Kivity Date: Thu, 28 May 2026 20:31:28 +0300 Subject: [PATCH] build: drop python3-pytest-sugar from install-dependencies.sh --future The python3-pytest-sugar package was orphaned from Fedora [1] and isn't provided by Fedora 45. Drop it from the future toolchain so it can build. Arguably it doesn't belong in the current toolchain either (it's not necessary, just nice) but I don't want to regenerated the toolchain just for that. [1] https://src.fedoraproject.org/rpms/python-pytest-sugar/c/094443596a244452d27203c61442a1483f19651e?branch=rawhide Closes scylladb/scylladb#30141 --- install-dependencies.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/install-dependencies.sh b/install-dependencies.sh index 8d7273dbb7..c2f84e9c76 100755 --- a/install-dependencies.sh +++ b/install-dependencies.sh @@ -44,7 +44,6 @@ debian_base_packages=( python3-pytest python3-pytest-asyncio python3-pytest-timeout - python3-pytest-sugar python3-pexpect libsnappy-dev libjsoncpp-dev @@ -387,7 +386,10 @@ if $PRINT_PIP_SYMLINK; then fi if ! $FUTURE; then - fedora_packages+=(toxiproxy) + fedora_packages+=( + toxiproxy + python3-pytest-sugar + ) fi umask 0022