Update marker test to use Python 3.6 instead of 2.6

This commit is contained in:
Pradyun Gedam 2019-08-15 23:02:40 +09:00
parent c2cf232279
commit 376f1136d8
No known key found for this signature in database
GPG Key ID: DA17C4B29CB32E4B
1 changed files with 2 additions and 2 deletions

View File

@ -602,10 +602,10 @@ def test_parse_editable_local_extras(
def test_exclusive_environment_markers():
"""Make sure RequirementSet accepts several excluding env markers"""
eq26 = install_req_from_line(
"Django>=1.6.10,<1.7 ; python_version == '2.6'")
"Django>=1.6.10,<1.7 ; python_version == '3.6'")
eq26.is_direct = True
ne26 = install_req_from_line(
"Django>=1.6.10,<1.8 ; python_version != '2.6'")
"Django>=1.6.10,<1.8 ; python_version != '3.6'")
ne26.is_direct = True
req_set = RequirementSet()