summaryrefslogtreecommitdiff
path: root/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/__init__.py b/__init__.py
index 9982d17..1ed58dc 100644
--- a/__init__.py
+++ b/__init__.py
@@ -6,12 +6,14 @@ from __future__ import print_function, absolute_import, division, unicode_litera
# ruamel.base installed __init__.py, and thus a new version should
# be installed at some point
-from typing import Dict, Any # NOQA
+import sys
+if sys.version_info >= (3, 5, 2):
+ from typing import Dict, Any # NOQA
_package_data = dict(
full_package_name='ruamel.yaml',
- version_info=(0, 14, 7),
- __version__='0.14.7',
+ version_info=(0, 14, 8),
+ __version__='0.14.8',
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