Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos.buildout
Commits
8a04a7a1
Commit
8a04a7a1
authored
Sep 22, 2017
by
Reinout van Rees
Committed by
GitHub
Sep 22, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #417 from davidjb/master
Use HTTPS for default PyPI index
parents
9a4b3303
fac9979f
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
8 deletions
+10
-8
CHANGES.rst
CHANGES.rst
+3
-1
src/zc/buildout/buildout.txt
src/zc/buildout/buildout.txt
+2
-2
src/zc/buildout/easy_install.py
src/zc/buildout/easy_install.py
+1
-1
src/zc/buildout/easy_install.txt
src/zc/buildout/easy_install.txt
+2
-2
src/zc/buildout/repeatable.txt
src/zc/buildout/repeatable.txt
+2
-2
No files found.
CHANGES.rst
View file @
8a04a7a1
...
...
@@ -4,7 +4,9 @@ Change History
2.9.5
(
unreleased
)
==================
-
Nothing
changed
yet
.
-
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.9.4 (2017-06-20)
...
...
src/zc/buildout/buildout.txt
View file @
8a04a7a1
...
...
@@ -3174,9 +3174,9 @@ using the `index` option::
[buildout]
...
index = http://index.example.com/
index = http
s
://index.example.com/
This index, or the default of http://pypi.python.org/simple/ if no
This index, or the default of http
s
://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
...
...
src/zc/buildout/easy_install.py
View file @
8a04a7a1
...
...
@@ -46,7 +46,7 @@ def realpath(path):
default_index_url
=
os
.
environ
.
get
(
'buildout-testing-index-url'
,
'http://pypi.python.org/simple'
,
'http
s
://pypi.python.org/simple'
,
)
logger
=
logging
.
getLogger
(
'zc.buildout.easy_install'
)
...
...
src/zc/buildout/easy_install.txt
View file @
8a04a7a1
...
...
@@ -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
http
s
://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,
...
...
@@ -1077,7 +1077,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
http
s
://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,
...
...
src/zc/buildout/repeatable.txt
View file @
8a04a7a1
...
...
@@ -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
http
s
://pypi.python.org/simple/Django/ and
http
s
://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:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment