summaryrefslogtreecommitdiff
path: root/__init__.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2018-08-14 21:00:50 +0200
committerAnthon van der Neut <anthon@mnt.org>2018-08-14 21:00:50 +0200
commit3a1db0b45daaf5cf7d3587170f9571691cd82bf5 (patch)
tree8d9b9aa9a7af768e29b1398acaa4aca34fc36f8a /__init__.py
parentecd5f8dbaf580fa618205845374256a301d0675f (diff)
downloadruamel.yaml-3a1db0b45daaf5cf7d3587170f9571691cd82bf5.tar.gz
fix issue #165 Python2 raising error when Unicode text involved in duplicate key warning.0.15.55
I could only reproduce this in Python2, finally fixed it. *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__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/__init__.py b/__init__.py
index cfddf1b..5c994e3 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, 54),
- __version__='0.15.54',
+ version_info=(0, 15, 55),
+ __version__='0.15.55',
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