From cdc277d3c215a9a1108c889b3ef9e03dd5b1a0de Mon Sep 17 00:00:00 2001 From: Krzysztof Klimonda Date: Tue, 20 Feb 2018 11:08:37 +0100 Subject: [PATCH] Add bottle to the pysandesh requirements list We're seeing UT failures ending with: ImportError: No module named bottle Add bottle to the list of pysandesh dependencies so it gets installed. Partial-Bug: #1746451 Change-Id: Icc228344923219d0dff5e798ffe54c7cb672e445 --- sandesh/library/python/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sandesh/library/python/setup.py b/sandesh/library/python/setup.py index 72932e9b..70e4b1ff 100644 --- a/sandesh/library/python/setup.py +++ b/sandesh/library/python/setup.py @@ -34,6 +34,7 @@ long_description="Sandesh python Implementation", install_requires=[ 'gevent', + 'bottle', 'netaddr>=0.7.5' ] )