10000 Add Python 3.5 and 3.6 · kingking888/python-readability@4172699 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4172699

Browse files
committed
Add Python 3.5 and 3.6
1 parent f74adc6 commit 4172699

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
language: python
22

33
python:
4-
- "3.4"
4+
- "3.6"
55

66
env:
77
- TOX_ENV=py27
88
- TOX_ENV=py34
9+
- TOX_ENV=py35
10+
- TOX_ENV=py36
911

1012
install:
1113
- travis_retry pip install -U pip wheel tox

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@
4141
"Programming Language :: Python :: 2.7",
4242
"Programming Language :: Python :: 3",
4343
"Programming Language :: Python :: 3.4",
44+
"Programming Language :: Python :: 3.5",
45+
"Programming Language :: Python :: 3.6",
4446

4547
],
4648
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py27, py34
7+
envlist = py27, py34, py35, py36
88

99
[testenv]
1010
deps=pytest

0 commit comments

Comments
 (0)
0