Issue #12226: HTTPS is now used by default when connecting to PyPI.

This commit is contained in:
Antoine Pitrou 2013-12-22 01:35:53 +01:00
parent ee7f3fc586
commit f60b7df9f8
4 changed files with 9 additions and 7 deletions

View file

@ -21,7 +21,7 @@ password:%s
class PyPIRCCommand(Command):
"""Base command that knows how to handle the .pypirc file
"""
DEFAULT_REPOSITORY = 'http://pypi.python.org/pypi'
DEFAULT_REPOSITORY = 'https://pypi.python.org/pypi'
DEFAULT_REALM = 'pypi'
repository = None
realm = None