virtualenv/web/res/res_create_env.py
changeset 65 e96c79ca2ebc
parent 59 a06fab661ac4
child 68 5278175359e0
equal deleted inserted replaced
64:d0d63c677c1f 65:e96c79ca2ebc
    44 
    44 
    45 if system_str == "Darwin":
    45 if system_str == "Darwin":
    46     INSTALLS.extend([
    46     INSTALLS.extend([
    47     ('LXML', 'pip', None, {'STATIC_DEPS': 'true', 'LIBXML2_VERSION': '2.7.8', 'LIBXSLT_VERSION': '1.1.26'}),
    47     ('LXML', 'pip', None, {'STATIC_DEPS': 'true', 'LIBXML2_VERSION': '2.7.8', 'LIBXSLT_VERSION': '1.1.26'}),
    48     ])
    48     ])
       
    49 elif system_str == "Windows":
       
    50     INSTALLS.extend([
       
    51     ('LXML', 'easy_install', None, None),
       
    52     ])
    49 else:
    53 else:
    50     INSTALLS.extend([
    54     INSTALLS.extend([
    51     ('LXML', 'easy_install', None, None),
    55     ('LXML', 'pip', None, None),
    52     ])
    56     ])
    53 
    57 
    54 
    58 
    55 def generate_install_methods(path_locations, src_base, Logger, call_subprocess):    
    59 def generate_install_methods(path_locations, src_base, Logger, call_subprocess):    
    56     return lib_generate_install_methods(path_locations, src_base, Logger, call_subprocess, INSTALLS)
    60     return lib_generate_install_methods(path_locations, src_base, Logger, call_subprocess, INSTALLS)