From 7ae746599f6f88be5a775f5e40a81525f40091f3 Mon Sep 17 00:00:00 2001 From: Anthon van der Neut Date: Mon, 29 Mar 2021 12:09:38 +0200 Subject: add Python 3 only classifier --- CHANGES | 4 ++++ README.rst | 9 +++++++-- __init__.py | 6 +++--- _doc/_static/pypi.svg | 2 +- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index 0374954..6531044 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +[0, 17, 1]: 2021-03-29 + - added 'Programming Language :: Python :: 3 :: Only', and removing + 0.17.0 from PyPI (reported by `Alasdair Nicol `__) + [0, 17, 0]: 2021-03-26 - this release no longer supports Python 2.7, most if not all Python 2 specific code is removed. The 0.17.x series is the last to support Python 3.5 diff --git a/README.rst b/README.rst index 9ea2f36..8cf2834 100644 --- a/README.rst +++ b/README.rst @@ -4,8 +4,8 @@ ruamel.yaml ``ruamel.yaml`` is a YAML 1.2 loader/dumper package for Python. -:version: 0.17.0 -:updated: 2021-03-26 +:version: 0.17.1 +:updated: 2021-03-29 :documentation: http://yaml.readthedocs.io :repository: https://sourceforge.net/projects/ruamel-yaml/ :pypi: https://pypi.org/project/ruamel.yaml/ @@ -65,7 +65,12 @@ ChangeLog .. should insert NEXT: at the beginning of line for next key (with empty line) +0.17.1 (2021-03-29): + - added 'Programming Language :: Python :: 3 :: Only', and removing + 0.17.0 from PyPI (reported by `Alasdair Nicol `__) + 0.17.0 (2021-03-26): + - removed because of incomplete classifiers - this release no longer supports Python 2.7, most if not all Python 2 specific code is removed. The 0.17.x series is the last to support Python 3.5 (this also allowed for removal of the dependency on ``ruamel.std.pathlib``) 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', diff --git a/_doc/_static/pypi.svg b/_doc/_static/pypi.svg index e35978d..6bc6a00 100644 --- a/_doc/_static/pypi.svg +++ b/_doc/_static/pypi.svg @@ -1 +1 @@ - pypipypi0.17.00.17.0 + pypipypi0.17.10.17.1 -- cgit v1.2.1