summaryrefslogtreecommitdiff
path: root/__init__.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2021-03-05 10:37:18 +0100
committerAnthon van der Neut <anthon@mnt.org>2021-03-05 10:37:18 +0100
commit59a2fff10a8a1f41eee55a43f48ad20539c69e75 (patch)
treeda0e987303b88219b643423938ded87a258f6869 /__init__.py
parent3b3bc4e217719b84dd27b04a4a644e5f39a0eb8e (diff)
downloadruamel.yaml-59a2fff10a8a1f41eee55a43f48ad20539c69e75.tar.gz
last release supporting 2.70.16.13
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/__init__.py b/__init__.py
index 5bd0d3d..7964157 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, 16, 12),
- __version__='0.16.12',
+ version_info=(0, 16, 13),
+ __version__='0.16.13',
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
@@ -16,7 +16,7 @@ _package_data = dict(
since=2014,
extras_require={
':platform_python_implementation=="CPython" and python_version<="2.7"': ['ruamel.ordereddict'], # NOQA
- ':platform_python_implementation=="CPython" and python_version<"3.9"': ['ruamel.yaml.clib>=0.1.2'], # NOQA
+ ':platform_python_implementation=="CPython" and python_version<"3.10"': ['ruamel.yaml.clib>=0.1.2'], # NOQA
'jinja2': ['ruamel.yaml.jinja2>=0.2'],
'docs': ['ryd'],
},