Skip to content

Commit 9128177

Browse files
committed
Support Python 3.5
1 parent eb58482 commit 9128177

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changes
22
=======
33

4+
0.2.0 (2015-09-20)
5+
------------------
6+
7+
- Support Python 3.5
8+
49
0.1.5 (2015-07-24)
510
------------------
611

janus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from queue import Empty as SyncQueueEmpty
99
from queue import Full as SyncQueueFull
1010

11-
__version__ = '0.1.5'
11+
__version__ = '0.2.0'
1212

1313
log = logging.getLogger(__package__)
1414

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ def read(f):
6565
'Programming Language :: Python :: 3',
6666
'Programming Language :: Python :: 3.3',
6767
'Programming Language :: Python :: 3.4',
68+
'Programming Language :: Python :: 3.5',
6869
'Topic :: Software Development :: Libraries'
6970
],
7071
author='Andrew Svetlov',

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22

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

55

66
[testenv]
@@ -19,6 +19,7 @@ setenv =
1919
basepython:
2020
py33: python3.3
2121
py34: python3.4
22+
py35: python3.5
2223

2324
whitelist_externals =
2425
coverage

0 commit comments

Comments
 (0)