Skip to content

Commit

Permalink
Support Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Sep 20, 2015
1 parent eb58482 commit 9128177
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
@@ -1,6 +1,11 @@
Changes
=======

0.2.0 (2015-09-20)
------------------

- Support Python 3.5

0.1.5 (2015-07-24)
------------------

Expand Down
2 changes: 1 addition & 1 deletion janus/__init__.py
Expand Up @@ -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__)

Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -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',
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]

envlist = check, {py33,py34}-{debug,release}, report
envlist = check, {py33,py34,py35}-{debug,release}, report


[testenv]
Expand All @@ -19,6 +19,7 @@ setenv =
basepython:
py33: python3.3
py34: python3.4
py35: python3.5

whitelist_externals =
coverage
Expand Down

0 comments on commit 9128177

Please sign in to comment.