Skip to content

Commit

Permalink
add python 3.7 to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
gasman committed Aug 8, 2018
1 parent c858d0d commit 694c6d5
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,18 @@ matrix:
python: 3.5
- env: TOXENV=py36-dj20-sqlite
python: 3.6
- env: TOXENV=py37-dj20-sqlite
python: 3.7
dist: xenial
sudo: true
- env: TOXENV=py35-dj21-sqlite
python: 3.5
- env: TOXENV=py36-dj21-sqlite
python: 3.6
- env: TOXENV=py37-dj21-sqlite
python: 3.7
dist: xenial
sudo: true
- env: TOXENV=py27-dj110-postgres
python: 2.7
- env: TOXENV=py34-dj110-postgres
Expand All @@ -48,10 +56,18 @@ matrix:
python: 3.5
- env: TOXENV=py36-dj20-postgres
python: 3.6
- env: TOXENV=py37-dj20-postgres
python: 3.7
dist: xenial
sudo: true
- env: TOXENV=py35-dj21-postgres
python: 3.5
- env: TOXENV=py36-dj21-postgres
python: 3.6
- env: TOXENV=py37-dj21-postgres
python: 3.7
dist: xenial
sudo: true

install:
- pip install tox
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Changelog
4.2 (xx.xx.xxxx)
~~~~~~~~~~~~~~~~
* Django 2.1 compatibility
* Python 3.7 compatibility
* Implemented prefetch_related on FakeQuerySet (Haydn Greatnews)
* Fix: Saving a ClusterableModel with a primary key of 0 no longer throws an IntegrityError (A Lee)
* Fix: Serialization now respects `serialize=False` on ParentalManyToManyFields (Tadas Dailyda)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Django',
],
)
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
envlist =
py{27,34,35}-dj110-{sqlite,postgres}
py{27,35,36}-dj111-{sqlite,postgres}
py{34,35,36}-dj20-{sqlite,postgres}
py{35,36}-dj21-{sqlite,postgres}
py{34,35,36,37}-dj20-{sqlite,postgres}
py{35,36,37}-dj21-{sqlite,postgres}

[testenv]
commands=./runtests.py --noinput
Expand All @@ -14,6 +14,7 @@ basepython =
py34: python3.4
py35: python3.5
py36: python3.6
py37: python3.7

deps =
django-taggit>=0.22.2,<0.23
Expand Down

0 comments on commit 694c6d5

Please sign in to comment.