summaryrefslogtreecommitdiff
path: root/__init__.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2018-08-09 08:34:41 +0200
committerAnthon van der Neut <anthon@mnt.org>2018-08-09 08:34:41 +0200
commitab28d38e95b2ae8871c1f68ff3a690cf360ce60a (patch)
tree0a6ac735c227b12b33b8a4a8dc2599d8c559a78b /__init__.py
parentc2d45fe4a14cb67f52b04bf8c82c39aac74eece6 (diff)
downloadruamel.yaml-ab28d38e95b2ae8871c1f68ff3a690cf360ce60a.tar.gz
fix issue #196 loosing items on cast to dict0.15.52
*When this change indeed resolves your problem, please **Close** this issue*. *(You can do so usingthe WorkFlow pull-down (close to the top right of this page)*
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/__init__.py b/__init__.py
index 07126c3..ffd84c2 100644
--- a/__init__.py
+++ b/__init__.py
@@ -7,8 +7,8 @@ if False: # MYPY
_package_data = dict(
full_package_name='ruamel.yaml',
- version_info=(0, 15, 51),
- __version__='0.15.51',
+ version_info=(0, 15, 52),
+ __version__='0.15.52',
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
@@ -65,9 +65,9 @@ _package_data = dict(
many_linux='libyaml-devel',
supported=[(2, 7), (3, 4)], # minimum
tox=dict(
- env=u'*pn', # also test narrow 2.7.15
- deps=u'ruamel.std.pathlib',
- fl8excl=u'_test/lib',
+ env='*pn', # also test narrow 2.7.15
+ deps='ruamel.std.pathlib',
+ fl8excl='_test/lib',
),
rtfd='yaml',
) # type: Dict[Any, Any]