Skip to content

Commit bd6ee11

Browse files
jdufresnegsnedders
authored andcommitted
Add testing for Python 3.6 and document support (#333)
Fixes #351
1 parent 0cae52b commit bd6ee11

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ python:
55
- "3.3"
66
- "3.4"
77
- "3.5"
8+
- "3.6"
89
- "pypy"
910

1011
sudo: false

requirements-install.sh

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/bin/bash -ex
22

3-
pip install pip==6.1.0
4-
53
pip install -U -r requirements-test.txt
64

75
if [[ $USE_OPTIONAL == "true" ]]; then

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ def default_environment():
7070
'Programming Language :: Python :: 3.3',
7171
'Programming Language :: Python :: 3.4',
7272
'Programming Language :: Python :: 3.5',
73+
'Programming Language :: Python :: 3.6',
7374
'Topic :: Software Development :: Libraries :: Python Modules',
7475
'Topic :: Text Processing :: Markup :: HTML'
7576
]

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = {py26,py27,py33,py34,py35,pypy}-{base,optional}
2+
envlist = {py26,py27,py33,py34,py35,py36,pypy}-{base,optional}
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)