-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
33 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/usr/bin/env python | ||
from __future__ import print_function | ||
import sys | ||
import textwrap | ||
|
||
message = """ | ||
Hi there! | ||
The URL you are using to fetch this script has changed, and this one will no | ||
longer work. Please use get-pip.py from the following URL instead: | ||
https://bootstrap.pypa.io/pip/2.7/get-pip.py | ||
Sorry if this change causes any inconvenience for you! | ||
We don't have a good mechanism to make more gradual changes here, and this | ||
renaming is a part of an effort to make it easier to us to update these | ||
scripts, when there's a pip release. It's also essential for improving how we | ||
handle the `get-pip.py` scripts, when pip drops support for a Python minor | ||
version. | ||
There are no more renames/URL changes planned, and we don't expect that a need | ||
would arise to do this again in the near future. | ||
Thanks for understanding! | ||
- Pradyun, on behalf of the volunteers who maintain pip. | ||
""" | ||
|
||
print(message, file=sys.stderr) | ||
sys.exit(1) |