8000 Merge pull request #101 from hugovk/add-3.5-3.6 · kingking888/python-readability@97e86c4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 97e86c4

Browse files
authored
Merge pull request buriy#101 from hugovk/add-3.5-3.6
Add support for Python 3.5 and 3.6, drop support for Python 3.3 and 2.6
2 parents 78cac34 + f4a0473 commit 97e86c4

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.travis.yml

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

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

66
env:
7-
- TOX_ENV=py26
87
- TOX_ENV=py27
9-
- TOX_ENV=py33
108
- TOX_ENV=py34
9+
- TOX_ENV=py35
10+
- TOX_ENV=py36
11+
12+
before_install:
13+
# work around https://github.com/travis-ci/travis-ci/issues/8363
14+
- pyenv global system 3.5
1115

1216
install:
1317
- travis_retry pip install -U pip wheel tox

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@
3838
"Topic :: Software Development :: Libraries :: Python Modules",
3939
"Programming Language :: Python",
4040
"Programming Language :: Python :: 2",
41-
"Programming Language :: Python :: 2.6",
4241
"Programming Language :: Python :: 2.7",
4342
"Programming Language :: Python :: 3",
44-
"Programming Language :: Python :: 3.3",
4543
"Programming Language :: Python :: 3.4",
44+
"Programming Language :: Python :: 3.5",
45+
"Programming Language :: Python :: 3.6",
4646

4747
],
4848
)

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 = py26, py27, py33, py34
7+
envlist = py27, py34, py35, py36
88

99
[testenv]
1010
deps=pytest

0 commit comments

Comments
 (0)
0