use https for DEFAULT_URL in distribute_setup.py (#198)
From issue #198, volinthius writes: > distribute_setup.py has obsolete DEFAULT_URL, which I think is related to this > https://mail.python.org/pipermail/distutils-sig/2017-October/031712.html Signed-off-by: Drew Fustini <drew@pdp7.com>
This commit is contained in:
parent
353acf8472
commit
a0c7f1c2cb
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ except ImportError:
|
|||
return os.spawnl(os.P_WAIT, sys.executable, *args) == 0
|
||||
|
||||
DEFAULT_VERSION = "0.6.45"
|
||||
DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/"
|
||||
DEFAULT_URL = "https://pypi.python.org/packages/source/d/distribute/"
|
||||
SETUPTOOLS_FAKED_VERSION = "0.6c11"
|
||||
|
||||
SETUPTOOLS_PKG_INFO = """\
|
||||
|
|
|
|||
Loading…
Reference in a new issue