deps: add click — required by mps_wallet_dist_health CLI

CI on 02f55a9 + 3f1a092 failed with 516 ModuleNotFoundError: No module
named 'click' across test_functional / test_integration. wallet_dist_
health.py imports click at module-top; pytest collection imports
crypto_watcher → wallet_dist_health → click, which isn't installed in
the CI test env.

click is usually a transitive dep of pyramid in most installs, but the
CI runner's env is stricter. Explicit declaration unblocks 1.2.0
artifact build.
This commit is contained in:
russell@unturf.com 2026-06-17 07:27:54 -04:00
parent 3f1a092d2e
commit e96c32502e
No known key found for this signature in database

View file

@ -68,3 +68,9 @@ html5lib
# included here; see lib/crypto_watcher/erldist_clients.py for the
# drop-in clients).
erldistpy>=0.1.6
# Used by mps_wallet_dist_health CLI (lib/crypto_watcher/wallet_dist_health.py)
# for argument parsing + colored output. Already a transitive dep of pyramid
# in most cases, but pin it explicitly so test imports don't break in cleaner
# CI envs.
click