Skip to content

Commit e1bcfed

Browse files
committed
0.4.0. Updated django compat (now tested on 2.1. Dropped <1.11)
1 parent 094de1a commit e1bcfed

File tree

4 files changed

+14
-20
lines changed

4 files changed

+14
-20
lines changed

.travis.yml

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
sudo: false
22
language: python
33
python:
4-
- "3.6"
5-
- "3.5"
4+
- "3.7"
65
- "3.4"
76
- "2.7"
87
env:
9-
- DJANGO="Django>=1.8,<1.9"
10-
- DJANGO="Django>=1.10,<1.11"
118
- DJANGO="Django>=1.11,<2.0"
12-
- DJANGO="Django>2.0,<2.1"
9+
- DJANGO="Django>=2.0,<2.1"
10+
- DJANGO="Django>=2.1,<2.2"
1311
matrix:
1412
exclude:
15-
- env: DJANGO="Django>=1.8,<1.9"
16-
python: "3.5"
17-
- env: DJANGO="Django>2.0,<2.1"
13+
- env: DJANGO="Django>=2.0,<2.1"
14+
python: "2.7"
15+
- env: DJANGO="Django>=2.1,<2.2"
1816
python: "2.7"
1917

2018
install: pip install $DJANGO

fieldsignals/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from .signals import pre_save_changed, post_save_changed # noqa
22

3-
__version__ = (0, 3, 4)
3+
__version__ = (0, 4, 0)

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setup(
1313
name='django-fieldsignals',
14-
version='0.3.4',
14+
version='0.4.0',
1515
packages=['fieldsignals', 'fieldsignals.tests'],
1616
include_package_data=True,
1717
test_suite='fieldsignals.tests.test_signals',
@@ -31,6 +31,8 @@
3131
'Programming Language :: Python :: 3',
3232
'Programming Language :: Python :: 3.4',
3333
'Programming Language :: Python :: 3.5',
34+
'Programming Language :: Python :: 3.6',
35+
'Programming Language :: Python :: 3.7',
3436
'Topic :: Internet :: WWW/HTTP',
3537
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
3638
],

tox.ini

+4-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
11
[tox]
22
envlist =
3-
{py27,py34,py35}-{dj18}
4-
{py34,py35,py36}-{dj110,dj111,dj20}
3+
{py27,py34,py37}-{dj111}
4+
{py34,py37}-{dj20,dj21}
55

66
[testenv]
77
commands = python {toxinidir}/setup.py test {posargs}
8-
basepython =
9-
py27: python2.7
10-
py34: python3.4
11-
py35: python3.5
12-
py36: python3.6
138
deps =
14-
dj18: Django>=1.8,<1.9
15-
dj110: Django>=1.10,<1.11
169
dj111: Django>=1.11,<2.0
17-
dj20: Django>2.0,<2.1
10+
dj20: Django>=2.0,<2.1
11+
dj21: Django>=2.1,<2.2

0 commit comments

Comments
 (0)