Skip to content

Commit

Permalink
Merge pull request #257 from skse/master
Browse files Browse the repository at this point in the history
Upgrade test matrix to include Django 2.2.
  • Loading branch information
Natim authored Apr 10, 2020
2 parents a509fdb + 7ca8984 commit f80d373
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,17 @@ matrix:
env: TOX_ENV=py35-django20
- python: 3.5
env: TOX_ENV=py35-django21
- python: 3.5
env: TOX_ENV=py35-django22

- python: 3.6
env: TOX_ENV=flake8
- python: 3.6
env: TOX_ENV=py36-django20
- python: 3.6
env: TOX_ENV=py36-django21
- python: 3.6
env: TOX_ENV=py36-django22

- python: 3.7
dist: xenial
Expand All @@ -26,6 +30,9 @@ matrix:
- python: 3.7
dist: xenial
env: TOX_ENV=py37-django21
- python: 3.7
dist: xenial
env: TOX_ENV=py37-django22
addons:
apt:
packages:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This document describes changes between each past release.
2.9.0 (unreleased)
==================

- Upgrade test matrix to Python 3.7 and Django 2.1
- Upgrade test matrix to Python 3.7 and Django 2.1, 2.2


2.8.0 (2019-01-15)
Expand Down
1 change: 1 addition & 0 deletions testtinymce/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
'OPTIONS': {
'context_processors': [
"django.contrib.auth.context_processors.auth",
"django.contrib.messages.context_processors.messages",
]
},
},
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
[tox]
envlist =
py27-django{111},
py35-django{20,21},
py36-django{20,21},
py37-django{20,21},
py35-django{20,21,22},
py36-django{20,21,22},
py37-django{20,21,22},
flake8

[testenv]
deps =
django111: Django>=1.11,<2.0
django20: Django>=2.0,<2.1
django21: Django>=2.1,<2.2
django22: Django>=2.2,<3.0
coverage
mock
pyenchant
Expand Down

0 comments on commit f80d373

Please sign in to comment.