diff options
author | Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com> | 2013-06-11 09:10:33 +0200 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com> | 2013-06-11 09:10:33 +0200 |
commit | 8385649c3afa07a8bc4924a5ad6572227bef0d29 (patch) | |
tree | ea9ac98cf8d6174cbb531d3667a23e92411977b9 | |
parent | fbbc3e1980d80e113852951f36aaaccc72c57c9e (diff) | |
download | external_python_setuptools-8385649c3afa07a8bc4924a5ad6572227bef0d29.tar.gz external_python_setuptools-8385649c3afa07a8bc4924a5ad6572227bef0d29.tar.bz2 external_python_setuptools-8385649c3afa07a8bc4924a5ad6572227bef0d29.zip |
Update some URLs (packages.python.org -> pythonhosted.org).
-rw-r--r-- | CHANGES.txt | 2 | ||||
-rw-r--r-- | docs/setuptools.txt | 2 | ||||
-rwxr-xr-x | setuptools/command/easy_install.py | 6 | ||||
-rw-r--r-- | setuptools/command/upload_docs.py | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index aac22ad0..c56a917b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -495,7 +495,7 @@ how it parses version numbers. This closes issue #52. * Added an upload_docs command to easily upload project documentation to - PyPI's http://packages.python.org. This close issue #56. + PyPI's https://pythonhosted.org. This close issue #56. * Fixed a bootstrap bug on the use_setuptools() API. diff --git a/docs/setuptools.txt b/docs/setuptools.txt index 543141f7..5d80b230 100644 --- a/docs/setuptools.txt +++ b/docs/setuptools.txt @@ -2414,7 +2414,7 @@ The ``upload`` command has a few options worth noting: ====================================================== PyPI now supports uploading project documentation to the dedicated URL -http://packages.python.org/<project>/. +https://pythonhosted.org/<project>/. The ``upload_docs`` command will create the necessary zip file out of a documentation directory and will post to the repository. diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index f29faf9d..b90fee0a 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -7,7 +7,7 @@ A tool for doing automatic download/extract/build of distutils-based Python packages. For detailed documentation, see the accompanying EasyInstall.txt file, or visit the `EasyInstall home page`__. -__ http://packages.python.org/setuptools/easy_install.html +__ https://pythonhosted.org/setuptools/easy_install.html """ import sys @@ -467,7 +467,7 @@ variable. For information on other options, you may wish to consult the documentation at: - http://packages.python.org/setuptools/easy_install.html + https://pythonhosted.org/setuptools/easy_install.html Please make the appropriate changes for your system and try again. """ @@ -1254,7 +1254,7 @@ Here are some of your options for correcting the problem: * You can set up the installation directory to support ".pth" files by using one of the approaches described here: - http://packages.python.org/setuptools/easy_install.html#custom-installation-locations + https://pythonhosted.org/setuptools/easy_install.html#custom-installation-locations Please make the appropriate changes for your system and try again.""" % ( self.install_dir, os.environ.get('PYTHONPATH','') diff --git a/setuptools/command/upload_docs.py b/setuptools/command/upload_docs.py index 1d5a7445..6df3f394 100644 --- a/setuptools/command/upload_docs.py +++ b/setuptools/command/upload_docs.py @@ -2,7 +2,7 @@ """upload_docs Implements a Distutils 'upload_docs' subcommand (upload documentation to -PyPI's packages.python.org). +PyPI's pythonhosted.org). """ import os @@ -185,7 +185,7 @@ class upload_docs(upload): elif r.status == 301: location = r.getheader('Location') if location is None: - location = 'http://packages.python.org/%s/' % meta.get_name() + location = 'https://pythonhosted.org/%s/' % meta.get_name() self.announce('Upload successful. Visit %s' % location, log.INFO) else: |