From e94f895067f62b5c1bf8a01ae69029e58b8cf53b Mon Sep 17 00:00:00 2001 From: Anthon van der Neut Date: Fri, 25 Jun 2021 09:34:18 +0200 Subject: regenerate _ruamel_yaml.c with cython 0.29.23 --- __init__.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to '__init__.py') diff --git a/__init__.py b/__init__.py index f3a8db2..f9ea70c 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, 2), - __version__='0.2.2', + version_info=(0, 2, 3), + __version__='0.2.3', 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', @@ -32,7 +32,7 @@ _package_data = dict( 'emitter.c', ], lib=[], - testx=""" + test=""" int main(int argc, char* argv[]) { /* prevent warning */ @@ -44,11 +44,11 @@ _package_data = dict( # NOQA # test='#include "ext/yaml.h"\n\nint main(int argc, char* argv[])\n{\nyaml_parser_t parser;\nparser = parser; /* prevent warning */\nreturn 0;\n}\n', # NOQA classifiers=[ - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: Implementation :: CPython', 'Topic :: Software Development :: Libraries :: Python Modules', ], @@ -59,9 +59,9 @@ _package_data = dict( macos='builder@macos', ), # read_the_docs='yaml', - supported=[(2, 7), (3, 5)], # minimum + supported=[(3, 5)], # minimum tox=dict( - env='*pn', + env='*f', ), manifest='include README.rst LICENSE setup.py *.c *.h', # rtfd='yaml', -- cgit