From 371de67f2430bfbd176962c039faeeb998d2fcc0 Mon Sep 17 00:00:00 2001 From: Matt Rose Date: Sun, 10 May 2020 22:34:18 -0400 Subject: [PATCH] fix failing 2.7 test --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2398a1e1..84e77e35 100755 --- a/setup.py +++ b/setup.py @@ -22,8 +22,10 @@ CSS_DIR = os.path.join('terminatorlib', 'themes') if sys.version_info < (3, 0): PYTEST_VERSION = '<5' + BABELGLADE_VERSION = '< 0.7' else: PYTEST_VERSION = '>0' + BABELGLADE_VERSION = '> 0' class TerminatorDist(Distribution): @@ -206,7 +208,7 @@ setup(name=APP_NAME, setup_requires=[ 'pytest-runner', 'babel', - 'BabelGladeExtractor', + 'BabelGladeExtractor ' + BABELGLADE_VERSION, ], install_requires=[ 'pycairo',