diff -r 78230b6c7b38 -r 7b6bcc33783f virtualenv/web/res/res_create_env.py --- a/virtualenv/web/res/res_create_env.py Fri Aug 01 01:30:00 2014 +0200 +++ b/virtualenv/web/res/res_create_env.py Tue Jan 21 18:11:36 2020 +0100 @@ -23,7 +23,7 @@ INSTALLS.extend([ #(key,method, option_str, dict_extra_env) ('SOUTH', 'pip', None, None), - ('PIL', 'easy_install', None, None), + ('PIL', 'easy_install', None, None), ('DJANGO','pip', None, None), ('DJANGO-EXTENSIONS', 'pip', None, None), ('DJANGO-REGISTRATION', 'easy_install', '-Z', None), @@ -31,6 +31,7 @@ ('DJANGO-PISTON', 'easy_install', None, None), ('HTTPLIB2', 'pip', None, None), ('OAUTH2', 'easy_install', None, None), + ('SETUPTOOLS-HG', 'pip', None, None), ('DJANGO-OAUTH-PLUS', 'pip', None, None), ('OPENID', 'pip', None, None), ('DJANGO_OPENID_CONSUMER', 'pip', None, None), @@ -50,5 +51,5 @@ ]) -def generate_install_methods(path_locations, src_base, Logger, call_subprocess): +def generate_install_methods(path_locations, src_base, Logger, call_subprocess): return lib_generate_install_methods(path_locations, src_base, Logger, call_subprocess, INSTALLS)