Skip to content

Commit ac8bba2

Browse files
David GrochowskiThePumpingLemma
authored andcommitted
Add support for Django 2.1
1 parent 8de29b4 commit ac8bba2

File tree

4 files changed

+17
-1
lines changed

4 files changed

+17
-1
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ python:
1111
env:
1212
- DJANGO="Django>=1.11,<1.12"
1313
- DJANGO="Django>=2.0,<2.1"
14+
- DJANGO="Django>=2.1,<2.2"
1415

1516
install:
1617
- pip install -U coverage codecov
@@ -26,5 +27,9 @@ matrix:
2627
exclude:
2728
- python: 2.7
2829
env: DJANGO="Django>=2.0,<2.1"
30+
- python: 2.7
31+
env: DJANGO="Django>=2.1,<2.2"
32+
- python: 3.4
33+
env: DJANGO="Django>=2.1,<2.2"
2934

3035
after_success: codecov

README.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,15 @@ django-simple-history
2020

2121
django-simple-history stores Django model state on every create/update/delete.
2222

23-
This app supports Django 1.11 and 2.0 and Python 2.7, or 3.4 or greater.
23+
This app supports the following combinations of Django and Python:
24+
25+
========== ==================
26+
Django Python
27+
========== ==================
28+
1.11 2.7, 3.4, 3.5, 3.6
29+
2.0 3.4, 3.5, 3.6
30+
2.1 3.5, 3.6
31+
========== ==================
2432

2533
Getting Help
2634
------------

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"Framework :: Django",
2828
"Framework :: Django :: 1.11",
2929
"Framework :: Django :: 2.0",
30+
"Framework :: Django :: 2.1",
3031
"Programming Language :: Python",
3132
"Programming Language :: Python :: 2.7",
3233
'Programming Language :: Python :: 3',

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
envlist =
33
py{27,34,35,36}-django111,
44
py{34,35,36}-django20,
5+
py{35,36}-django21,
56
py{35,36}-djangotrunk,
67
docs, flake8
78

@@ -29,6 +30,7 @@ deps =
2930
coverage
3031
django111: Django>=1.11,<1.12
3132
django20: Django>=2.0,<2.1
33+
django21: Django>=2.1,<2.2
3234
djangotrunk: https://github.com/django/django/tarball/master
3335
commands =
3436
coverage run -a --branch setup.py test

0 commit comments

Comments
 (0)