From b069a2002dd1efa6a2dbb5c9b80b30fbb704b838 Mon Sep 17 00:00:00 2001 From: Richard Ipsum Date: Thu, 6 Nov 2014 16:41:47 +0000 Subject: also for check_lt and check_gt --- exts/pip.find_deps | 2 ++ 1 file changed, 2 insertions(+) diff --git a/exts/pip.find_deps b/exts/pip.find_deps index d11054b..8cd8364 100755 --- a/exts/pip.find_deps +++ b/exts/pip.find_deps @@ -152,6 +152,7 @@ def check_lt(dep, version): # than this greater_than version) warn('conflict! > %s conflicts with < %s' % (dep.greater_than, version)) + dep.conflicts.append((('>', dep.greater_than), ('<', version))) else: dep.less_than = version @@ -163,6 +164,7 @@ def check_gt(dep, version): # less_than version) warn('conflict! < %s conflicts with > %s' % (dep.less_than, version)) + dep.conflicts.append((('<', dep.less_than), ('>', version))) def find_build_deps(source, name, version=None): debug('source: %s' % source) -- cgit v1.2.1