jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/377415 )
Change subject: dev-requirements.txt: Avoide double-requirement ......................................................................
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 --- M dev-requirements.txt 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Mpaa: Looks good to me, approved jenkins-bot: Verified
diff --git a/dev-requirements.txt b/dev-requirements.txt index d25f4a7..8bfa279 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -9,7 +9,7 @@ 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
pywikibot-commits@lists.wikimedia.org