Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix parser error for some r packages
YAML with multiple empty entries in an array and comments can't be parsed by ruamel yaml (NotImplementedError in ruamel/yaml/tokens.py:84). The recipe part causing issue looked like this: ``` requirements: build: - {{ compiler(cxx) }} # [not win] - {{ compiler(c) }} # [not win] - ... ``` after jinja like this: ``` requirements: build: - # [not win] - # [not win] - ... ```
- Loading branch information