Skip to content

Commit ba60b0b

Browse files
Add support for Django 3.1 (#713)
* Add django 3.1 to test matrix * Add django 3.1 to supported versions in README * Update AUTHORS.rst * Add Django 3.1 to `setup.py` * Update CHANGES
1 parent 16c714a commit ba60b0b

File tree

6 files changed

+12
-0
lines changed

6 files changed

+12
-0
lines changed

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ env:
1616
- DJANGO="Django>=2.1,<2.2"
1717
- DJANGO="Django>=2.2,<2.3"
1818
- DJANGO="Django>=3.0,<3.1"
19+
- DJANGO="Django>=3.1,<3.2"
1920

2021
install:
2122
- pip install -U coverage codecov
@@ -55,5 +56,11 @@ matrix:
5556
env: DJANGO="Django>=3.0,<3.1"
5657
- python: 3.5
5758
env: DJANGO="Django>=3.0,<3.1"
59+
- python: 2.7
60+
env: DJANGO="Django>=3.1,<3.2"
61+
- python: 3.4
62+
env: DJANGO="Django>=3.1,<3.2"
63+
- python: 3.5
64+
env: DJANGO="Django>=3.1,<3.2"
5865

5966
after_success: codecov

AUTHORS.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Authors
3737
- Erik van Widenfelt (`erikvw <https://github.com/erikvw>`_)
3838
- Filipe Pina (@fopina)
3939
- Florian Eßer
40+
- François Martin (`martinfrancois <https://github.com/martinfrancois>`_)
4041
- Frank Sachsenheim
4142
- George Kettleborough (`georgek <https://github.com/georgek>`_)
4243
- George Vilches

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Unreleased
1111
``bulk_update_with_history`` instead of ``objects`` (gh-703)
1212
- Add optional ``manager`` argument to ``bulk_update_with_history`` to use instead of
1313
the default manager (gh-703)
14+
- Add support for Django 3.1 (gh-713)
1415

1516
2.11.0 (2020-06-20)
1617
-------------------

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ This app supports the following combinations of Django and Python:
4646
2.1 3.5, 3.6, 3.7
4747
2.2 3.5, 3.6, 3.7, 3.8
4848
3.0 3.6, 3.7, 3.8
49+
3.1 3.6, 3.7, 3.8
4950
========== =======================
5051

5152
Getting Help

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"Framework :: Django :: 2.1",
3535
"Framework :: Django :: 2.2",
3636
"Framework :: Django :: 3.0",
37+
"Framework :: Django :: 3.1",
3738
"Programming Language :: Python",
3839
"Programming Language :: Python :: 2.7",
3940
"Programming Language :: Python :: 3",

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ envlist =
55
py{35,36,37}-django21,
66
py{35,36,37,38}-django22,
77
py{36,37,38}-django30,
8+
py{36,37,38}-django31,
89
py{36,37,38}-djangotrunk,
910
docs, flake8
1011

0 commit comments

Comments
 (0)