summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2017-07-01 16:30:17 +0200
committerAnthon van der Neut <anthon@mnt.org>2017-07-01 16:30:17 +0200
commit585bc7430df9c723ea9986356b1e7c32c6483d12 (patch)
treedfd3b7a73526f3b3d1a2c44a126a72cfb6915e26
parent03717f36347c74ae56ac77f8ef51e14524bb33d1 (diff)
downloadruamel.yaml-585bc7430df9c723ea9986356b1e7c32c6483d12.tar.gz
Added tag 0.15.16 for changeset bf3cd222269e
-rw-r--r--README.rst2
-rw-r--r--__init__.py36
2 files changed, 19 insertions, 19 deletions
diff --git a/README.rst b/README.rst
index 17373b6..281b416 100644
--- a/README.rst
+++ b/README.rst
@@ -32,7 +32,7 @@ ChangeLog
.. should insert NEXT: at the beginning of line for next key
-0.15.15 (2017-07-01):
+0.15.16 (2017-07-01):
- minor typing issues (reported and fix provided by
`Manvendra Singh <https://bitbucket.org/manu-chroma/>`_)mmm
- small doc improvements
diff --git a/__init__.py b/__init__.py
index 5edebf8..012f49a 100644
--- a/__init__.py
+++ b/__init__.py
@@ -7,39 +7,39 @@ if False: # MYPY
_package_data = dict(
full_package_name='ruamel.yaml',
- version_info=(0, 15, 15),
- __version__='0.15.15',
+ version_info=(0, 15, 16),
+ __version__='0.15.16',
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',
+ 'ruamel.ordereddict',
], 'jinja2': ['ruamel.yaml.jinja2>=0.2']},
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',
+ 'ext/loader.c',
+ 'ext/reader.c',
+ 'ext/scanner.c',
+ 'ext/parser.c',
+ 'ext/emitter.c',
],
lib=[],
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.3',
- 'Programming Language :: Python :: 3.4',
- 'Programming Language :: Python :: 3.5',
- 'Programming Language :: Python :: 3.6',
- '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.3',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
+ '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',
windows_wheels=True,