From cf5341ad3c4f1fa374a2f51dcef02ea61793287d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 12 Nov 2016 08:39:23 +0530 Subject: [PATCH] ... --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index a84e0bb3c..524c594f6 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,7 @@ with open(constants, 'rb') as f: constants = f.read().decode('utf-8') appname = re.search(r"^appname = '([^']+)'", constants, re.MULTILINE).group(1) version = tuple(map(int, re.search(r"^version = \((\d+), (\d+), (\d+)\)", constants, re.MULTILINE).group(1, 2, 3))) +is_travis = os.environ.get('TRAVIS') == 'true' cflags = ldflags = cc = ldpaths = None