Commit eb27c486 authored by David Beitey's avatar David Beitey Committed by Julien Muchembled

Use HTTPS for PyPI index

Backporting an upstream changes, because  recently pypi stops accept download using http ( https://mail.python.org/pipermail/distutils-sig/2017-October/031712.html )

For slapos case, apparently it means all software releases where eggs where not in shacache stop working.

/reviewed-on !12
parent 8b81e256
Change History
**************
?.?.? (unreleased)
==================
- Use HTTPS for PyPI's index. PyPI redirects HTTP to HTTPS by default
now so using HTTPS directly avoids the potential for that redirect
being modified in flight.
2.5.2 (2016-06-07)
==================
......
......@@ -3134,9 +3134,9 @@ using the `index` option::
[buildout]
...
index = http://index.example.com/
index = https://index.example.com/
This index, or the default of http://pypi.python.org/simple/ if no
This index, or the default of https://pypi.python.org/simple/ if no
index is specified, will always be searched for distributions unless
running buildout with options that prevent searching for
distributions. The latest version of the distribution that meets the
......
......@@ -63,7 +63,7 @@ except ImportError:
default_index_url = os.environ.get(
'buildout-testing-index-url',
'http://pypi.python.org/simple',
'https://pypi.python.org/simple',
)
logger = logging.getLogger('zc.buildout.easy_install')
......
......@@ -46,7 +46,7 @@ index
The URL of an index server, or almost any other valid URL. :)
If not specified, the Python Package Index,
http://pypi.python.org/simple/, is used. You can specify an
https://pypi.python.org/simple/, is used. You can specify an
alternate index with this option. If you use the links option and
if the links point to the needed distributions, then the index can
be anything and will be largely ignored. In the examples, here,
......@@ -1073,7 +1073,7 @@ index
The URL of an index server, or almost any other valid URL. :)
If not specified, the Python Package Index,
http://pypi.python.org/simple/, is used. You can specify an
https://pypi.python.org/simple/, is used. You can specify an
alternate index with this option. If you use the links option and
if the links point to the needed distributions, then the index can
be anything and will be largely ignored. In the examples, here,
......
......@@ -317,8 +317,8 @@ When everything is pinned, no output is generated:
recipe v2
The Python package index is case-insensitive. Both
http://pypi.python.org/simple/Django/ and
http://pypi.python.org/simple/dJaNgO/ work. And distributions aren't always
https://pypi.python.org/simple/Django/ and
https://pypi.python.org/simple/dJaNgO/ work. And distributions aren't always
naming themselves consistently case-wise. So all version names are normalized
and case differences won't impact the pinning:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment