From 5d61982d2c188a8f6499de8373aa03239b749681 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Sun, 3 Dec 2017 12:47:51 +0200 Subject: [PATCH] Bump to 0.6.0 --- .travis.yml | 1 - CHANGES.txt | 5 +++++ aiomcache/__init__.py | 2 +- setup.py | 7 +++++-- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index fa3acc9..f35b397 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ sudo: required language: python python: - - "3.3" - "3.4" - "3.5" - "3.6" diff --git a/CHANGES.txt b/CHANGES.txt index 8103960..e0c750e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,11 @@ CHANGES ======= +0.6.0 (2017-12-03) +------------------ + +- Drop python 3.3 support + 0.5.2 (2017-05-27) ------------------ diff --git a/aiomcache/__init__.py b/aiomcache/__init__.py index 3c4d3a6..ed1e27d 100644 --- a/aiomcache/__init__.py +++ b/aiomcache/__init__.py @@ -14,4 +14,4 @@ __all__ = ('Client', 'ClientException', 'ValidationException') -__version__ = '0.5.2' +__version__ = '0.6.0' diff --git a/setup.py b/setup.py index 28ccd0f..ee4576d 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,6 @@ def read(f): 'License :: OSI Approved :: BSD License', 'Intended Audience :: Developers', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', @@ -44,11 +43,15 @@ def read(f): 'Environment :: Web Environment', 'Framework :: AsyncIO', ], - author='Nikolay Kim, KeepSafe', + author='Nikolay Kim', author_email='fafhrd91@gmail.com', + maintainer=', '.join(('Nikolay Kim ', + 'Andrew Svetlov ')), + maintainer_email='aio-libs@googlegroups.com', url='https://github.com/aio-libs/aiomcache/', license='BSD', packages=find_packages(), + python_requires='>=3.4.0', install_requires=install_requires, tests_require=tests_require, test_suite='nose.collector',