Skip to content

Commit

Permalink
Drop django 1.9. Add django 1.10 and 1.11 tests
Browse files Browse the repository at this point in the history
All goes on much as it has this past age
  • Loading branch information
craigds committed Jul 4, 2017
1 parent f8af09e commit b7930e4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,15 @@ language: python
python:
- "3.5"
- "3.4"
- "3.3"
- "2.7"
env:
- DJANGO="Django>=1.8,<1.9"
- DJANGO="Django>=1.9,<1.10"
- DJANGO="Django>=1.10,<1.11"
- DJANGO="Django>=1.11,<2.0"
matrix:
exclude:
- env: DJANGO="Django>=1.8,<1.9"
python: "3.5"
- env: DJANGO="Django>=1.9,<1.10"
python: "3.3"

install: pip install $DJANGO
script: python setup.py test
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/craigds/django-fieldsignals.svg?branch=master)](https://travis-ci.org/craigds/django-fieldsignals) [![Flattr me](http://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/submit/auto?user_id=craigds&url=https://github.com/craigds/django-fieldsignals/&title=django-fieldsignals&language=en_GB&tags=django,python,github&category=software)
[![Build Status](https://travis-ci.org/craigds/django-fieldsignals.svg?branch=master)](https://travis-ci.org/craigds/django-fieldsignals)

# Introduction

Expand Down Expand Up @@ -72,4 +72,3 @@ or from github:
# Notes

* Currently no support for `ManyToManyField` or reverse side of `ForeignKey` (one to many).
* If you've enjoyed this project and want to help me spend more time on open source, flattr me! [![Flattr me](http://api.flattr.com/button/flattr-badge-large.png)](https://flattr.com/submit/auto?user_id=craigds&url=https://github.com/craigds/django-fieldsignals/&title=django-fieldsignals&language=en_GB&tags=django,python,github&category=software)
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name='django-fieldsignals',
version='0.2.3',
version='0.3.0',
packages=['fieldsignals', 'fieldsignals.tests'],
include_package_data=True,
test_suite='fieldsignals.tests.test_signals',
Expand All @@ -29,7 +29,6 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
[tox]
envlist =
{py27,py34,py35,pypy}-{dj18,dj19}
{py27,py34,py35}-{dj18}
{py34,py35}-{dj110,dj111}

[testenv]
commands = python {toxinidir}/setup.py test {posargs}
basepython =
py27: python2.7
py34: python3.4
py35: python3.5
pypy: pypy
deps =
dj18: Django>=1.8,<1.9
dj19: Django>=1.9,<1.10
dj110: Django>=1.10,<1.11
dj111: Django>=1.11,<2.0

0 comments on commit b7930e4

Please sign in to comment.