Skip to content

Commit bc87de9

Browse files
committed
Align CI gates: syntax checks was moved to py3.5+
1 parent 450fed7 commit bc87de9

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
CHANGELOG
22
=========
33
Version 2.0.0
4+
-------------
45
* Async version is added
56

7+
* pep8 tests is moved to Python 3.6 due to `async_logwrap` syntax incompatibility with python < 3.5
8+
69
Version 1.3.0
710
-------------
811
* Allowed to blacklist call arguments

tox.ini

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ commands =
3030
commands = {posargs:}
3131

3232
[tox:travis]
33-
2.7 = install, py27, pep8, pylint
34-
3.4 = install, py34, pep8
35-
3.5 = install, py35, pep8, bandit, pylint
33+
2.7 = install, py27
34+
3.4 = install, py34
35+
3.5 = install, py35, bandit, pylint
3636
3.6 = install, py36, pep8, pep257
37-
pypy = install, pypy, pep8
37+
pypy = install, pypy
3838

3939
[testenv:pep8]
4040
deps =
@@ -55,12 +55,14 @@ usedevelop = False
5555
commands = pip install ./ -vvv -U
5656

5757
[testenv:pylint]
58+
basepython = python3.5
5859
deps =
5960
pylint
6061
-r{toxinidir}/CI_REQUIREMENTS.txt
6162
commands = pylint logwrap
6263

6364
[flake8]
65+
basepython = python3.6
6466
exclude =
6567
.venv,
6668
.git,

0 commit comments

Comments
 (0)