Skip to content

Commit

Permalink
dev-requirements.txt: Avoide double-requirement
Browse files Browse the repository at this point in the history
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
  • Loading branch information
5j9 committed Sep 12, 2017
1 parent e121eb8 commit 22d19cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 22d19cf

Please sign in to comment.