Unquote urls in YAML - packaging (#5793)

This commit is contained in:
Fabio Alessandro Locati 2016-12-02 15:27:54 +00:00 committed by Matt Clay
commit 8ae7d2dcc4
6 changed files with 12 additions and 12 deletions

View file

@ -152,17 +152,17 @@ EXAMPLES = '''
# Install (MyApp) using one of the remote protocols (bzr+,hg+,git+,svn+). You do not have to supply '-e' option in extra_args.
- pip:
name: 'svn+http://myrepo/svn/MyApp#'
name: svn+http://myrepo/svn/MyApp#
egg: MyApp'
# Install MyApp using one of the remote protocols (bzr+,hg+,git+) in a non editable way.
- pip:
name: 'git+http://myrepo/app/MyApp'
name: git+http://myrepo/app/MyApp
editable: false
# Install (MyApp) from local tarball
- pip:
name: 'file:///path/to/MyApp.tar.gz'
name: file:///path/to/MyApp.tar.gz
# Install (Bottle) into the specified (virtualenv), inheriting none of the globally installed modules
- pip:
@ -193,7 +193,7 @@ EXAMPLES = '''
# Install specified python requirements and custom Index URL.
- pip:
requirements: /my_app/requirements.txt
extra_args: '-i https://example.com/pypi/simple'
extra_args: -i https://example.com/pypi/simple
# Install (Bottle) for Python 3.3 specifically,using the 'pip-3.3' executable.
- pip: