aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2021-07-04 14:15:38 +0200
committerAnthon van der Neut <anthon@mnt.org>2021-07-04 14:15:38 +0200
commit44f920f807fe7d68c56903393b68152fa6b656c0 (patch)
tree32f8ae24771650026d7060d016822aaf0982925e
parent1ccf634c9724a5a8f18496626ecc3fe81748a3e4 (diff)
downloadruamel-yaml-clib-code-44f920f807fe7d68c56903393b68152fa6b656c0.tar.gz
add python_requires to METADATA, as suggested by H.F. Schreiner0.2.5
-rw-r--r--.hgignore1
-rw-r--r--README.rst4
-rw-r--r--__init__.py5
3 files changed, 5 insertions, 5 deletions
diff --git a/.hgignore b/.hgignore
index 2110212..2f58a5e 100644
--- a/.hgignore
+++ b/.hgignore
@@ -7,6 +7,5 @@
syntax: glob
-_doc
TODO
tmp
diff --git a/README.rst b/README.rst
index c8fc5e4..cbb325e 100644
--- a/README.rst
+++ b/README.rst
@@ -4,8 +4,8 @@ ruamel.yaml.clib
``ruamel.yaml.clib`` is the C based reader/scanner and emitter for ruamel.yaml
-:version: 0.2.2
-:updated: 2020-09-04
+:version: 0.2.5
+:updated: 2021-07-04
:documentation: http://yaml.readthedocs.io
:repository: https://sourceforge.net/projects/ruamel-yaml-clib/
:pypi: https://pypi.org/project/ruamel.yaml.clib/
diff --git a/__init__.py b/__init__.py
index 2829f61..45b20f6 100644
--- a/__init__.py
+++ b/__init__.py
@@ -7,8 +7,8 @@ if False: # MYPY
_package_data = dict(
full_package_name='ruamel.yaml.clib',
- version_info=(0, 2, 4),
- __version__='0.2.4',
+ version_info=(0, 2, 5, 'dev', 0),
+ __version__='0.2.5.dev.0',
author='Anthon van der Neut',
author_email='a.van.der.neut@ruamel.eu',
description='C version of reader, parser and emitter for ruamel.yaml derived from libyaml',
@@ -60,6 +60,7 @@ _package_data = dict(
),
# read_the_docs='yaml',
supported=[(3, 5)], # minimum
+ python_requires='>=3.5',
tox=dict(
env='*f',
),