summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2007-09-04 15:53:18 +0000
committerphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2007-09-04 15:53:18 +0000
commitad637e3465090a6388fd17eeaaab3c3a71df02da (patch)
treeab5aa5d4e5dd848b38c285cba0ef52be7627805a /setuptools/command
parent776da6f4a5741d96caa2ca164cb91172b3e737d5 (diff)
downloadpython-setuptools-ad637e3465090a6388fd17eeaaab3c3a71df02da.tar.gz
Remove all references to the Cheese Shop, and switch to using
the new PyPI "/simple" REST API. git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@57964 6015fed2-1504-0410-9fe1-9d1591cc4771
Diffstat (limited to 'setuptools/command')
-rwxr-xr-xsetuptools/command/easy_install.py2
-rwxr-xr-xsetuptools/command/upload.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index ba03aae..5d0fae6 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://cheeseshop.python.org/pypi"
+ self.index_url = self.index_url or "http://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:
diff --git a/setuptools/command/upload.py b/setuptools/command/upload.py
index 685ce43..e91b854 100755
--- a/setuptools/command/upload.py
+++ b/setuptools/command/upload.py
@@ -20,7 +20,7 @@ class upload(Command):
description = "upload binary package to PyPI"
- DEFAULT_REPOSITORY = 'http://www.python.org/pypi'
+ DEFAULT_REPOSITORY = 'http://pypi.python.org/pypi'
user_options = [
('repository=', 'r',