Skip to content

Commit

Permalink
Merge pull request #21 from thijstriemstra/master
Browse files Browse the repository at this point in the history
Django 1.9 support
  • Loading branch information
ashwoods committed Dec 14, 2015
2 parents 81776a6 + 7720e63 commit d29b6d8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ htmlcov/
.coverage
.python-version
.idea
dist/
dist/
.cache
.eggs
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ script: tox
env:
- TOXENV=py27-django-17
- TOXENV=py27-django-18
- TOXENV=py27-django-19
- TOXENV=py33-django-17
- TOXENV=py33-django-18
- TOXENV=py34-django-17
- TOXENV=py34-django-18
- TOXENV=py34-django-19
after_success: coveralls
deploy:
provider: pypi
Expand Down
3 changes: 2 additions & 1 deletion queued_storage/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from importlib import import_module

import django
from django.core.exceptions import ImproperlyConfigured
from django.utils.importlib import import_module


def import_attribute(import_path=None, options=None):
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
downloadcache = {distshare}
args_are_paths = false
envlist =
{py27,py34}-django-19
{py27,py33,py34}-django-{17,18}

[testenv]
Expand All @@ -17,4 +18,5 @@ whitelist_externals = make
deps =
django-17: Django>=1.7,<1.8
django-18: Django>=1.8,<1.9
django-19: Django>=1.9,<2.0
-rtests/requirements.txt

0 comments on commit d29b6d8

Please sign in to comment.