diff --git a/.travis.yml b/.travis.yml index ad45b13..88eae41 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,10 +3,14 @@ python: - "2.7" - "3.4" - "3.5" + - "3.6" env: - - DJANGO=1.8 - - DJANGO=1.9 - - DJANGO=1.10 + - DJANGO=1.11 + - DJANGO=2.0 +matrix: + exclude: + - python: "2.7" + env: DJANGO=2.0 install: - pip install -q Django==$DJANGO - pip install coverage diff --git a/django_seed/__init__.py b/django_seed/__init__.py index 5f2dab7..cc873be 100644 --- a/django_seed/__init__.py +++ b/django_seed/__init__.py @@ -2,7 +2,7 @@ import random -__version__ = '0.1.7' +__version__ = '0.1.8' class Seed(object):