diff --git a/.travis.yml b/.travis.yml index 3396887..9878cfa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/setup.py b/setup.py index e1822a0..522aac6 100644 --- a/setup.py +++ b/setup.py @@ -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", diff --git a/tox.ini b/tox.ini index 1b444ef..02b4d62 100644 --- a/tox.ini +++ b/tox.ini @@ -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 \ No newline at end of file + dj31: Django~=3.1.9 + dj32: Django~=3.2.0