diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2021-07-21 18:19:59 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-21 18:19:59 -0400 |
| commit | d0e4547a43ac1ef7619d41a94245a02244caf340 (patch) | |
| tree | d7a06455b8c0ba0d836d7617fb2b632eff26090c | |
| parent | 1b8472486ce309b5ddd1b8b3f95627437e19b14b (diff) | |
| parent | dbe0bc2ca104c26ac415501c8a80c41663f5e5ca (diff) | |
| download | python-setuptools-git-d0e4547a43ac1ef7619d41a94245a02244caf340.tar.gz | |
Merge pull request #2736 from somniumism/fix-broken-links
Fix broken external links in easy_install.py
| -rw-r--r-- | setuptools/command/easy_install.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 45adb6a1..43bd2952 100644 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -6,7 +6,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`__. -__ https://setuptools.readthedocs.io/en/latest/easy_install.html +__ https://setuptools.readthedocs.io/en/latest/deprecated/easy_install.html """ @@ -513,7 +513,7 @@ class easy_install(Command): For information on other options, you may wish to consult the documentation at: - https://setuptools.readthedocs.io/en/latest/easy_install.html + https://setuptools.readthedocs.io/en/latest/deprecated/easy_install.html Please make the appropriate changes for your system and try again. """).lstrip() # noqa @@ -1306,7 +1306,7 @@ class easy_install(Command): * You can set up the installation directory to support ".pth" files by using one of the approaches described here: - https://setuptools.readthedocs.io/en/latest/easy_install.html#custom-installation-locations + https://setuptools.readthedocs.io/en/latest/deprecated/easy_install.html#custom-installation-locations Please make the appropriate changes for your system and try again. |
