Skip to content
This repository has been archived by the owner on Jan 7, 2021. It is now read-only.

Commit

Permalink
Added Python 3.6 testing
Browse files Browse the repository at this point in the history
  • Loading branch information
timgraham committed Oct 5, 2017
1 parent 4ce1ee0 commit ad22491
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,13 @@ matrix:
env: TOXENV=py35-django-111
- python: 3.5
env: TOXENV=py35-django-master
- python: 3.6
env: TOXENV=py36-django-111
- python: 3.6
env: TOXENV=py36-django-master
allow_failures:
- env: TOXENV=py35-django-master
- env: TOXENV=py36-django-master
install:
- pip install tox
script:
Expand Down
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
History
=======

X.Y.Z (YYYY-MM-DD)
------------------

* Added testing for Python 3.6.

1.8.0 (2017-02-03)
------------------

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(exclude=['tests', 'tests.*']),
include_package_data=True,
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
[tox]
envlist =
py{27,34,35}-django1{8,9,10,11}
py{35}-master
py36-django111
py{35,36}-master

[testenv]
basepython =
py27: python2.7
py34: python3.4
py35: python3.5
py36: python3.6
commands = {envpython} setup.py test
setenv=
PYTHONWARNINGS=default
Expand Down

0 comments on commit ad22491

Please sign in to comment.