diff --git a/README.rst b/README.rst index 94b5c3d..49a9883 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ nested_lookup ############# -.. image:: https://img.shields.io/badge/pypi-0.2.20-green.svg +.. image:: https://img.shields.io/badge/pypi-0.2.21-green.svg :target: https://pypi.python.org/pypi/nested-lookup .. image:: https://travis-ci.org/rameshrvr/nested-lookup.svg?branch=master :target: https://travis-ci.org/rameshrvr/nested-lookup diff --git a/setup.py b/setup.py index 895c4ca..22b12aa 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ print(requirements()) setup( name="nested-lookup", - version="0.2.20", + version="0.2.21", description="Python functions for working with deeply nested documents (lists and dicts) ", keywords="nested document dictionary dict list lookup schema json xml yaml", long_description=open("README.rst").read(), @@ -36,13 +36,13 @@ setup( include_package_data=True, install_requires=requirements(), classifiers=[ - # Specify the Python versions you support here. In particular, ensure - # that you indicate whether you support Python 2, Python 3 or both. + # this library supports the following Python versions. "Programming Language :: Python :: 2.6", "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", ], )