Skip to content

Commit 4e7ccad

Browse files
committed
0.7.0 - Improve support for newer django
Support djangoes are now 2.2, 3.1, 3.2
1 parent cfe19ec commit 4e7ccad

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ python:
77
- "3.7"
88
env:
99
- DJANGO="Django~=2.2.8"
10-
- DJANGO="Django~=3.0.0"
11-
- DJANGO="Django~=3.1.0"
10+
- DJANGO="Django~=3.1.9"
11+
- DJANGO="Django~=3.2.0"
1212

1313
install: pip install $DJANGO
1414
script: python setup.py test

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setup(
1313
name="django-fieldsignals",
14-
version="0.6.0",
14+
version="0.7.0",
1515
packages=["fieldsignals", "fieldsignals.tests"],
1616
include_package_data=True,
1717
test_suite="fieldsignals.tests.test_signals",

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ envlist =
33
# Any supported combination of python & django.
44
# min/max python versions for each django version are listed here
55
{py35,py39}-{dj22}
6-
{py36,py39}-{dj30}
76
{py36,py39}-{dj31}
7+
{py36,py39}-{dj32}
88

99
[testenv]
1010
commands = pytest {posargs}
1111
deps =
1212
pytest
1313
dj22: Django~=2.2.17
14-
dj30: Django~=3.0.11
15-
dj31: Django~=3.1.3
14+
dj31: Django~=3.1.9
15+
dj32: Django~=3.2.0

0 commit comments

Comments
 (0)