-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes indentation edge case with lists under a collection element node (
#42) * Fixes indentation edge case with lists under a collection element node * Adds regression test
- Loading branch information
1 parent
e323fd7
commit 06e7793
Showing
4 changed files
with
106 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{% set name = "boto" %} | ||
{% set version = "2.49.0" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
fn: {{ name }}-{{ version }}.tar.gz | ||
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz | ||
sha256: ea0d3b40a2d852767be77ca343b58a9e3a4b00d9db440efb8da74b4e58025e5a | ||
|
||
requirements: | ||
host: | ||
- python | ||
run: | ||
- python | ||
|
||
build: | ||
number: 0 | ||
script: python setup.py install | ||
|
||
test: | ||
commands: | ||
- asadmin -h # [py2k] | ||
- s3put -h | ||
- taskadmin -h # [py2k] | ||
imports: | ||
- boto | ||
|
||
about: | ||
home: https://github.com/boto/boto/ | ||
license: MIT | ||
summary: Amazon Web Services Library | ||
description: | | ||
Boto aims to support the full breadth and depth of Amazon Web Services. | ||
NOTE: Boto3, the next version of Boto, is stable and recommended for | ||
general use. | ||
doc_url: http://docs.pythonboto.org/en/latest/ | ||
doc_source_url: https://github.com/boto/boto/blob/develop/docs/source/index.rst | ||
dev_url: https://github.com/boto/boto/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
schema_version: 1 | ||
|
||
context: | ||
name: boto | ||
version: 2.49.0 | ||
|
||
package: | ||
name: ${{ name|lower }} | ||
version: ${{ version }} | ||
|
||
source: | ||
fn: ${{ name }}-${{ version }}.tar.gz | ||
url: https://pypi.org/packages/source/${{ name[0] }}/${{ name }}/${{ name }}-${{ version }}.tar.gz | ||
sha256: ea0d3b40a2d852767be77ca343b58a9e3a4b00d9db440efb8da74b4e58025e5a | ||
|
||
build: | ||
number: 0 | ||
script: python setup.py install | ||
|
||
requirements: | ||
host: | ||
- python | ||
run: | ||
- python | ||
|
||
tests: | ||
- python: | ||
imports: | ||
- boto | ||
pip_check: false | ||
- script: | ||
- if: py2k | ||
then: asadmin -h | ||
- s3put -h | ||
- if: py2k | ||
then: taskadmin -h | ||
|
||
about: | ||
license: MIT | ||
summary: Amazon Web Services Library | ||
description: | | ||
Boto aims to support the full breadth and depth of Amazon Web Services. | ||
NOTE: Boto3, the next version of Boto, is stable and recommended for | ||
general use. | ||
homepage: https://github.com/boto/boto/ | ||
repository: https://github.com/boto/boto/ | ||
documentation: http://docs.pythonboto.org/en/latest/ |