Skip to content

Commit 8c4c4b3

Browse files
authored
Merge pull request #42 from okdtsk/test_3.6
Support Python 3.6
2 parents cf34d25 + 69f61f0 commit 8c4c4b3

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,7 @@ Test by using tox. We test against the following versions.
623623
- 3.3
624624
- 3.4
625625
- 3.5
626+
- 3.6
626627

627628
To run all tests and to run ``flake8`` against all versions, use:
628629

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ def run_tests(self):
8383
"Programming Language :: Python :: 3.3",
8484
"Programming Language :: Python :: 3.4",
8585
"Programming Language :: Python :: 3.5",
86+
"Programming Language :: Python :: 3.6",
8687
"Topic :: Software Development"
8788
]
8889
)

tox.ini

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
[tox]
2-
envlist = py27, py33, py34, py35, py35-flake8-src, py35-flake8-tests
2+
envlist = py27, py33, py34, py35, py36, py36-flake8-src, py36-flake8-tests, py36-flake8-other
33

44
[testenv]
55
deps =
66
-r{toxinidir}/requirements.txt
77
-r{toxinidir}/requirements-test.txt
88
commands = py.test -v tests/
99

10-
[testenv:py35]
11-
basepython = python3.5
10+
[testenv:py36]
11+
basepython = python3.6
1212
deps = {[testenv]deps}
1313
commands = py.test -v --cov=linebot tests/
1414

15-
[testenv:py35-flake8-src]
16-
basepython = python3.5
15+
[testenv:py36-flake8-src]
16+
basepython = python3.6
1717
deps =
1818
flake8
1919
flake8-docstrings
2020
commands = flake8 linebot/
2121

22-
[testenv:py35-flake8-other]
23-
basepython = python3.5
22+
[testenv:py36-flake8-other]
23+
basepython = python3.6
2424
deps =
2525
flake8
2626
commands = flake8 tests/ examples/

0 commit comments

Comments
 (0)