Skip to content

Commit

Permalink
Merge pull request #3 from mkouhei/supports-python3.6
Browse files Browse the repository at this point in the history
Supports Python 3.6.
  • Loading branch information
mkouhei committed Aug 26, 2017
2 parents 4801c3d + 0e1016a commit 82c0a43
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def read_content(filepath):
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
Expand Down
10 changes: 8 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
envlist =
py27,
py35,
py36,
pypy,
pycodestyle,
pep257,
Expand Down Expand Up @@ -49,6 +50,11 @@ deps=
{[py]deps}
basepython = python3.5

[testenv:py36]
deps=
{[py]deps}
basepython = python3.6

[testenv:pypy]
deps=
{[py]deps}
Expand All @@ -58,14 +64,14 @@ basepython = pypy
deps=
{[py]deps}
pycodestyle
basepython = python3.5
basepython = python3.6
commands = pycodestyle --first

[testenv:pep257]
deps=
pep257
commands = pep257 bootstrap_py
basepython = python3.5
basepython = python3.6

[testenv:docs]
deps=
Expand Down

0 comments on commit 82c0a43

Please sign in to comment.