summaryrefslogtreecommitdiff
path: root/__init__.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2021-03-29 12:09:38 +0200
committerAnthon van der Neut <anthon@mnt.org>2021-03-29 12:09:38 +0200
commit7ae746599f6f88be5a775f5e40a81525f40091f3 (patch)
tree32028342044fca6358a5f7d24af90f0fa723786d /__init__.py
parent4966a9fda329d400a33da8f6c4288c7fa29f8917 (diff)
downloadruamel.yaml-7ae746599f6f88be5a775f5e40a81525f40091f3.tar.gz
add Python 3 only classifier0.17.1
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 946d929..82714ec 100644
--- a/__init__.py
+++ b/__init__.py
@@ -5,20 +5,20 @@ if False: # MYPY
_package_data = dict(
full_package_name='ruamel.yaml',
- version_info=(0, 17, 0),
- __version__='0.17.0',
+ version_info=(0, 17, 1),
+ __version__='0.17.1',
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
entry_points=None,
since=2014,
extras_require={
- ':platform_python_implementation=="CPython" and python_version<="2.7"': ['ruamel.ordereddict'], # 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'],
},
classifiers=[
+ 'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',