diff options
author | Mathieu Bridon <bochecha@daitauha.fr> | 2018-08-14 23:29:38 +0200 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-08-23 18:11:47 +0900 |
commit | f1e3f10ffe2aeb7627009644c9cb93505686fddc (patch) | |
tree | 30b3952d3503c232543c04c390772080f68f7b78 /setup.py | |
parent | 176aa09fba06d478c6d138400e855e85e6526a19 (diff) | |
download | buildstream-f1e3f10ffe2aeb7627009644c9cb93505686fddc.tar.gz |
deps: Specify the minimum version required for blessingstristan/blessings
Buildstream uses the Terminal.does_styling attribute, which was only
added in blessings 1.6.
Blessings helpfully returns an empty string when calling an nonexistent
attribute on the Terminal object, instead of failing.
Because Fedora has blessings 1.5, Buildstream thought that my terminal
couldn't handle styling, and just didn't print the status bar, silently.
Specifying the minimum version avoids this silent failure.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -273,7 +273,7 @@ setup(name='BuildStream', 'ruamel.yaml < 0.15.52', 'pluginbase', 'Click', - 'blessings', + 'blessings >= 1.6', 'jinja2 >= 2.10', 'protobuf >= 3.5', 'grpcio >= 1.10', |