diff --git a/lbuild/format.py b/lbuild/format.py index b0de497..66cbf43 100644 --- a/lbuild/format.py +++ b/lbuild/format.py @@ -66,8 +66,6 @@ def wrap(self, name): style = ansi_escape(name) if style is not None: if name in ["underlined", "bold"]: - if name == "underlined": - name = "underline" close = ansi_escape("no_" + name) else: close = ansi_escape("close_fg_color") diff --git a/lbuild/main.py b/lbuild/main.py index 2988422..13aac36 100644 --- a/lbuild/main.py +++ b/lbuild/main.py @@ -21,7 +21,7 @@ from lbuild.api import Builder -__version__ = '1.5.3' +__version__ = '1.5.5' class InitAction: diff --git a/requirements.txt b/requirements.txt index bf04949..0f8f590 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ lxml jinja2 anytree>=2.4.3 -colorful<0.4.4 +colorful==0.4.4 # Required for the tests testfixtures diff --git a/setup.py b/setup.py index c4428b0..1b15fcf 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ "jinja2", "gitpython>=2.1.11", "anytree>=2.4.3", - "colorful<0.4.4"], + "colorful==0.4.4"], extras_require = { "test": ["testfixtures", "coverage"],