diff options
author | Anthon van der Neut <anthon@mnt.org> | 2017-08-09 20:03:45 +0200 |
---|---|---|
committer | Anthon van der Neut <anthon@mnt.org> | 2017-08-09 20:03:45 +0200 |
commit | ea69043409ed4cd7fdf89044756e5af1791f2f64 (patch) | |
tree | 5983d90c5ffc298f50096c748ee65bbed12462ec /__init__.py | |
parent | fabf65a9f1227448d08e6579ac1e8268762ee9d6 (diff) | |
download | ruamel.yaml-ea69043409ed4cd7fdf89044756e5af1791f2f64.tar.gz |
fix issue #147: not able to dump floats0.15.25
This happened when dumping without loading, e.g.:
python -c "import ruamel.yaml, sys; ruamel.yaml.round_trip_dump([3.14])"
When this fix solves the problem, please close this issue
Diffstat (limited to '__init__.py')
-rw-r--r-- | __init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/__init__.py b/__init__.py index 7e45afe..a902392 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, 24), - __version__='0.15.24', + version_info=(0, 15, 25), + __version__='0.15.25', 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 |