From 2939334dae0f0aa8acf8440461c61315fd663163 Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Sat, 9 Sep 2017 13:21:25 -0400 Subject: [PATCH] Allow file:// URIs - Should we raise a warning when locking? Signed-off-by: Dan Ryan --- pipenv/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/utils.py b/pipenv/utils.py index b81e35d0..59423a3a 100644 --- a/pipenv/utils.py +++ b/pipenv/utils.py @@ -15,7 +15,7 @@ import six # List of version control systems we support. VCS_LIST = ('git', 'svn', 'hg', 'bzr') -FILE_LIST = ('http://', 'https://', 'ftp://') +FILE_LIST = ('http://', 'https://', 'ftp://', 'file:///') requests = requests.session()