Skip to content

Commit

Permalink
0.7.0 - Improve support for newer django
Browse files Browse the repository at this point in the history
Support djangoes are now 2.2, 3.1, 3.2
  • Loading branch information
craigds committed Aug 16, 2021
1 parent cfe19ec commit 4e7ccad
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ python:
- "3.7"
env:
- DJANGO="Django~=2.2.8"
- DJANGO="Django~=3.0.0"
- DJANGO="Django~=3.1.0"
- DJANGO="Django~=3.1.9"
- DJANGO="Django~=3.2.0"

install: pip install $DJANGO
script: python setup.py test
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name="django-fieldsignals",
version="0.6.0",
version="0.7.0",
packages=["fieldsignals", "fieldsignals.tests"],
include_package_data=True,
test_suite="fieldsignals.tests.test_signals",
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ envlist =
# Any supported combination of python & django.
# min/max python versions for each django version are listed here
{py35,py39}-{dj22}
{py36,py39}-{dj30}
{py36,py39}-{dj31}
{py36,py39}-{dj32}

[testenv]
commands = pytest {posargs}
deps =
pytest
dj22: Django~=2.2.17
dj30: Django~=3.0.11
dj31: Django~=3.1.3
dj31: Django~=3.1.9
dj32: Django~=3.2.0

0 comments on commit 4e7ccad

Please sign in to comment.