From c2c4434acfd0b88381aadfce27758112d69d5e82 Mon Sep 17 00:00:00 2001 From: Anthon van der Neut Date: Sun, 23 Jul 2017 21:29:18 +0200 Subject: rm winwhl.bat --- CHANGES | 3 +++ README.rst | 2 +- __init__.py | 4 ++-- _doc/conf.py | 6 +++--- winwhl.bat | 11 ----------- 5 files changed, 9 insertions(+), 17 deletions(-) delete mode 100644 winwhl.bat diff --git a/CHANGES b/CHANGES index e84ad51..d689dae 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +[0, 15, 20]: 2017-07-23 + - wheels for windows including C extensions + [0, 15, 19]: 2017-07-13 - added object constructor for rt, decorator ``yaml_object`` to replace YAMLObject. - fix for problem using load_all with Path() instance diff --git a/README.rst b/README.rst index cdc1273..652f826 100644 --- a/README.rst +++ b/README.rst @@ -35,7 +35,7 @@ ChangeLog .. should insert NEXT: at the beginning of line for next key -NEXT: +0.15.20 (2017-07-23): - wheels for windows including C extensions 0.15.19 (2017-07-13): diff --git a/__init__.py b/__init__.py index a2bbb07..372a1be 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, 15, 20, 'dev'), - __version__='0.15.20.dev', + version_info=(0, 15, 20), + __version__='0.15.20', 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 diff --git a/_doc/conf.py b/_doc/conf.py index 1ded3e1..1e1acb9 100644 --- a/_doc/conf.py +++ b/_doc/conf.py @@ -54,11 +54,11 @@ author = u'Anthon van der Neut' # built documents. # try: - from ruamel.yaml import __version__, version_info + from ruamel.yaml import __version__, version_info # NOQA # The short X.Y version. version = '.'.join([str(l) for l in version_info[:3]]) # The full version, including alpha/beta/rc tags. - release = version # = __version__ + release = version # = __version__ except Exception as e: print('exception', e) version = release = 'dev' @@ -74,7 +74,7 @@ try: sys.argv = ['ryd', 'convert', '--no-pdf', str(fn)] rc = RYDCmd() rc.parse_args() - print(*sys.argv, '->', rc.run()) + print(*sys.argv, '->', rc.run()) sys.argv = oldargv except Exception as e: diff --git a/winwhl.bat b/winwhl.bat deleted file mode 100644 index fcafadb..0000000 --- a/winwhl.bat +++ /dev/null @@ -1,11 +0,0 @@ -del /S /Q ruamel.yaml.egg-info -del /S /Q build -c:\python\2.7\python.exe setup.py bdist_wheel -c:\python\2.7-32\python.exe setup.py bdist_wheel -c:\python\2.6\python.exe setup.py bdist_wheel -c:\python\2.6-32\python.exe setup.py bdist_wheel -c:\python\3.4\python.exe setup.py bdist_wheel -c:\python\3.4-32\python.exe setup.py bdist_wheel -c:\python\3.3\python.exe setup.py bdist_wheel -c:\python\3.3-32\python.exe setup.py bdist_wheel -c:\pypy2\2.5\pypy-2.5.1-win32\pypy.exe setup.py bdist_wheel -- cgit v1.2.1