Skip to content

Commit

Permalink
Add testing for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
timgraham committed Jan 22, 2019
1 parent 33a7737 commit 9c8ea54
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,16 @@ matrix:
env: TOXENV=py36-django-22
- python: 3.6
env: TOXENV=py36-django-master
- python: 3.7
env: TOXENV=py37-django-111
- python: 3.7
env: TOXENV=py37-django-20
- python: 3.7
env: TOXENV=py37-django-21
- python: 3.7
env: TOXENV=py37-django-22
- python: 3.7
env: TOXENV=py37-django-master
install:
- mkdir -p $PIP_WHEEL_DIR
- pip wheel -r tests/requirements.txt tox coveralls
Expand Down
2 changes: 1 addition & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This page details the changes in the various ``django-formtools`` releases.

- Dropped testing for Django 1.8, 1.9, 1.10.

- Added support for Django 2.1 and 2.2.
- Added support for Django 2.1 and 2.2, and Python 3.7.

2.1 (2017-10-04)
----------------
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ def find_package_data(where='.', package='',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
],
zip_safe=False,
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ args_are_paths = false
envlist =
{py27,py34}-django-111
py34-django-20
{py35,py36}-django-{111,20,21,22,master}
py{35,36,37}-django-{111,20,21,22,master}

[testenv]
basepython =
py27: python2.7
py34: python3.4
py35: python3.5
py36: python3.6
py37: python3.7
usedevelop = true
whitelist_externals = make
commands = make test
Expand Down

0 comments on commit 9c8ea54

Please sign in to comment.