From 22d19cf4394e46406eca08b9ca3b584b3969b4a4 Mon Sep 17 00:00:00 2001 From: dalba Date: Tue, 12 Sep 2017 13:50:19 +0430 Subject: [PATCH] dev-requirements.txt: Avoide double-requirement Mentioning the inverse python_version of line 11 in line 12 prevents double-requirement situation which may occure under Python 2.6 and Windows OS. Bug: T175669 Change-Id: Iadf7191b7794ea4a0863424a36d138d2fe2dbd16 --- dev-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-requirements.txt b/dev-requirements.txt index d25f4a71f2..8bfa279e98 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -9,7 +9,7 @@ pytest-cov pytest-attrib pytest-httpbin httpbin<0.6.0 ; python_version < '2.7' -httpbin!=0.6.0,!=0.6.1 ; os_name != 'posix' +httpbin!=0.6.0,!=0.6.1 ; os_name != 'posix' and python_version >= '2.7' six