Update requirementslib to fix markers in vcs reqs

- Fixes #2416

Signed-off-by: Dan Ryan <dan@danryan.co>
This commit is contained in:
Dan Ryan
2018-06-26 00:44:01 -04:00
parent 7f7ae3244d
commit de9faeb48e
5 changed files with 5 additions and 3 deletions
+1
View File
@@ -0,0 +1 @@
Updated requirementslib to fix an issue with properly quoting markers in VCS requirements.
+1
View File
@@ -0,0 +1 @@
Updated requirementslib to fix an issue with properly quoting markers in VCS requirements.
+1 -1
View File
@@ -1,5 +1,5 @@
# -*- coding=utf-8 -*-
__version__ = "1.0.5.dev0"
__version__ = "1.0.6"
from .exceptions import RequirementError
+1 -1
View File
@@ -649,7 +649,7 @@ class Requirement(object):
@property
def markers_as_pip(self):
if self.markers:
return "; {0}".format(self.markers)
return "; {0}".format(self.markers.replace('"', "'"))
return ""
+1 -1
View File
@@ -27,7 +27,7 @@ requests==2.19.1
idna==2.7
urllib3==1.23
certifi==2018.4.16
requirementslib==1.0.5
requirementslib==1.0.6
attrs==18.1.0
distlib==0.2.7
packaging==17.1