From 70c61d89a8c7d548a42f843579ca540b39655ca9 Mon Sep 17 00:00:00 2001 From: pje Date: Fri, 1 Mar 2013 12:23:20 -0500 Subject: Default index URL to use SSL version of PyPI --HG-- branch : setuptools-0.6 extra : source : b95868385a32c0103133105788c70850656662c6 --- setuptools/command/easy_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setuptools/command/easy_install.py') diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 90f29320..71794865 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -156,7 +156,7 @@ class easy_install(Command): else: self.all_site_dirs.append(normalize_path(d)) if not self.editable: self.check_site_dir() - self.index_url = self.index_url or "http://pypi.python.org/simple" + self.index_url = self.index_url or "https://pypi.python.org/simple" self.shadow_path = self.all_site_dirs[:] for path_item in self.install_dir, normalize_path(self.script_dir): if path_item not in self.shadow_path: -- cgit v1.2.1