Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: python
sudo: false
python:
- "2.7"
- "3.6"
- "3.8"
env:
global:
- PYTHONPATH=tests/testapp
Expand All @@ -13,6 +13,9 @@ env:
- DJANGO_VERSION=">=1.11,<2.0"
- DJANGO_VERSION=">=2.0,<2.1"
- DJANGO_VERSION=">=2.1,<2.2"
- DJANGO_VERSION=">=2.2,<3.0"
- DJANGO_VERSION=">=3.0,<3.1"
- DJANGO_VERSION=">=3.1,<3.2"
matrix:
exclude:
- python: "2.7"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ universal=1
# E301: expected 1 blank line, found 1
# E302: expected 2 blank lines, found 0
[flake8]
ignore = E127,E128,E265,E301,E302,E305,E306
ignore = E127,E128,E265,E301,E302,E305,E306,W504
max-line-length = 90
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ def read(fname):
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
test_suite='tests'
)
7 changes: 6 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[tox]
envlist={py27,py33,py34,py35,py36}-{django18,django19,django110,django111,django20,django21}
envlist=
py{27,33,34,35,36,37,38}-django{18,19,110,111,20,21,22}
py{36,37,38}-django{30,31}

[testenv]
deps=
Expand All @@ -25,6 +27,9 @@ 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
django30: django>=3.0,<3.1
django31: django>=3.1,<3.2
commands=
flake8 .
py.test