mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Update requirementslib to fix markers in vcs reqs
- Fixes #2416 Signed-off-by: Dan Ryan <dan@danryan.co>
This commit is contained in:
@@ -0,0 +1 @@
|
||||
Updated requirementslib to fix an issue with properly quoting markers in VCS requirements.
|
||||
@@ -0,0 +1 @@
|
||||
Updated requirementslib to fix an issue with properly quoting markers in VCS requirements.
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
# -*- coding=utf-8 -*-
|
||||
__version__ = "1.0.5.dev0"
|
||||
__version__ = "1.0.6"
|
||||
|
||||
|
||||
from .exceptions import RequirementError
|
||||
|
||||
+1
-1
@@ -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 ""
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user