summaryrefslogtreecommitdiff
path: root/exts/pip_find_deps.py
diff options
context:
space:
mode:
Diffstat (limited to 'exts/pip_find_deps.py')
-rwxr-xr-xexts/pip_find_deps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/exts/pip_find_deps.py b/exts/pip_find_deps.py
index 3e7eea6..2fe67fd 100755
--- a/exts/pip_find_deps.py
+++ b/exts/pip_find_deps.py
@@ -195,7 +195,7 @@ def resolve_version_constraints(requirements):
check_eqs(dep, version)
elif op == '!=':
dep.excludes.append(version)
- # TODO: chk_eqs needed here
+ check_eqs(dep, version)
elif op == '<':
check_lt(dep, version)
elif op == '>':