summaryrefslogtreecommitdiff
path: root/__init__.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2018-09-07 14:25:14 +0200
committerAnthon van der Neut <anthon@mnt.org>2018-09-07 14:25:14 +0200
commit55964d27ae6afdc11b74004e257c8834aead27e8 (patch)
treec92f865874ecc8d192f71521fceca05bc1696727 /__init__.py
parente9f456c03708ca2c1c7617cb8f1fd2ffe8a018d3 (diff)
downloadruamel.yaml-55964d27ae6afdc11b74004e257c8834aead27e8.tar.gz
fix issue #234 safe_load inserting a fold indicator character0.15.66
*When this change indeed resolves your problem, please **Close** this issue*. *(You can do so using the WorkFlow pull-down (close to the top right of this page))*
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py72
1 files changed, 36 insertions, 36 deletions
diff --git a/__init__.py b/__init__.py
index c0c17c9..9203c12 100644
--- a/__init__.py
+++ b/__init__.py
@@ -7,60 +7,60 @@ if False: # MYPY
_package_data = dict(
full_package_name='ruamel.yaml',
- version_info=(0, 15, 65),
- __version__='0.15.65',
+ version_info=(0, 15, 66),
+ __version__='0.15.66',
author='Anthon van der Neut',
author_email='a.van.der.neut@ruamel.eu',
description='ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order', # NOQA
entry_points=None,
since=2014,
- extras_require={':platform_python_implementation=="CPython" and python_version<="2.7"': [
- 'ruamel.ordereddict',
- ], 'jinja2': ['ruamel.yaml.jinja2>=0.2'], 'docs': ['ryd']},
+ extras_require={
+ ':platform_python_implementation=="CPython" and python_version<="2.7"': [
+ 'ruamel.ordereddict'
+ ],
+ 'jinja2': ['ruamel.yaml.jinja2>=0.2'],
+ 'docs': ['ryd'],
+ },
ext_modules=[
- dict(
- name='_ruamel_yaml',
- src=[
- 'ext/_ruamel_yaml.c',
- 'ext/api.c',
- 'ext/writer.c',
- 'ext/dumper.c',
- 'ext/loader.c',
- 'ext/reader.c',
- 'ext/scanner.c',
- 'ext/parser.c',
- 'ext/emitter.c',
- ],
- lib=[],
- test="""
+ dict(
+ name='_ruamel_yaml',
+ src=[
+ 'ext/_ruamel_yaml.c',
+ 'ext/api.c',
+ 'ext/writer.c',
+ 'ext/dumper.c',
+ 'ext/loader.c',
+ 'ext/reader.c',
+ 'ext/scanner.c',
+ 'ext/parser.c',
+ 'ext/emitter.c',
+ ],
+ lib=[],
+ test="""
int main(int argc, char* argv[])
{
/* prevent warning */
return 0;
}
""",
- ),
+ )
],
# NOQA
# test='#include "ext/yaml.h"\n\nint main(int argc, char* argv[])\n{\nyaml_parser_t parser;\nparser = parser; /* prevent warning */\nreturn 0;\n}\n', # NOQA
classifiers=[
- 'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3.4',
- 'Programming Language :: Python :: 3.5',
- 'Programming Language :: Python :: 3.6',
- 'Programming Language :: Python :: 3.7',
- 'Programming Language :: Python :: Implementation :: CPython',
- 'Programming Language :: Python :: Implementation :: PyPy',
- 'Programming Language :: Python :: Implementation :: Jython',
- 'Topic :: Software Development :: Libraries :: Python Modules',
- 'Topic :: Text Processing :: Markup',
+ 'Programming Language :: Python :: 2.7',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: Implementation :: CPython',
+ 'Programming Language :: Python :: Implementation :: PyPy',
+ 'Programming Language :: Python :: Implementation :: Jython',
+ 'Topic :: Software Development :: Libraries :: Python Modules',
+ 'Topic :: Text Processing :: Markup',
],
keywords='yaml 1.2 parser round-trip preserve quotes order config',
- wheels=dict(
- windows='appveyor',
- linux='libyaml-devel',
- macos='builder@macos',
- ),
+ wheels=dict(windows='appveyor', linux='libyaml-devel', macos='builder@macos'),
read_the_docs='yaml',
supported=[(2, 7), (3, 4)], # minimum
tox=dict(