From 9128177b2926e6d211a7ea61acabbe99bf88186a Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Sun, 20 Sep 2015 05:33:00 +0500 Subject: [PATCH] Support Python 3.5 --- CHANGES.rst | 5 +++++ janus/__init__.py | 2 +- setup.py | 1 + tox.ini | 3 ++- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 7a5990a..b52ffcc 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changes ======= +0.2.0 (2015-09-20) +------------------ + +- Support Python 3.5 + 0.1.5 (2015-07-24) ------------------ diff --git a/janus/__init__.py b/janus/__init__.py index bd15e35..782ad2e 100644 --- a/janus/__init__.py +++ b/janus/__init__.py @@ -8,7 +8,7 @@ from queue import Empty as SyncQueueEmpty from queue import Full as SyncQueueFull -__version__ = '0.1.5' +__version__ = '0.2.0' log = logging.getLogger(__package__) diff --git a/setup.py b/setup.py index aa8bd9a..a6a7fed 100644 --- a/setup.py +++ b/setup.py @@ -65,6 +65,7 @@ def read(f): 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'Topic :: Software Development :: Libraries' ], author='Andrew Svetlov', diff --git a/tox.ini b/tox.ini index 1a629e3..b5f80ec 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] -envlist = check, {py33,py34}-{debug,release}, report +envlist = check, {py33,py34,py35}-{debug,release}, report [testenv] @@ -19,6 +19,7 @@ setenv = basepython: py33: python3.3 py34: python3.4 + py35: python3.5 whitelist_externals = coverage