summaryrefslogtreecommitdiff
path: root/__init__.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2021-03-26 11:20:38 +0100
committerAnthon van der Neut <anthon@mnt.org>2021-03-26 11:20:38 +0100
commit09f8576ae990234daebf51cca48b52d564f2c2d2 (patch)
treee08953ec5547d9ed05373a3134c3557f6ebf11c6 /__init__.py
parente8719cd39655d98cf2bde1be15366cca7a58fd89 (diff)
downloadruamel.yaml-09f8576ae990234daebf51cca48b52d564f2c2d2.tar.gz
remove support for 2.7, prepare for f-strings0.17.0
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/__init__.py b/__init__.py
index 816eaa3..946d929 100644
--- a/__init__.py
+++ b/__init__.py
@@ -5,8 +5,8 @@ if False: # MYPY
_package_data = dict(
full_package_name='ruamel.yaml',
- version_info=(0, 17, 0, 'dev'),
- __version__='0.17.0.dev',
+ version_info=(0, 17, 0),
+ __version__='0.17.0',
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
@@ -33,7 +33,6 @@ _package_data = dict(
supported=[(3, 5)], # minimum
tox=dict(
env='*f', # f for 3.5
- deps='ruamel.std.pathlib',
fl8excl='_test/lib',
),
universal=True,