diff options
author | Matt Lenc <mattl@incuna.com> | 2014-06-18 11:43:43 +0100 |
---|---|---|
committer | Matt Lenc <mattl@incuna.com> | 2014-06-18 11:43:43 +0100 |
commit | 61f7af8399c1ab51a0b2dff06414170947eaa228 (patch) | |
tree | c2e3d2f1fee8a392e40184f017d22ba53a3142f4 | |
parent | 4e69c491558000282a928fc62fc376ae4e6ae70c (diff) | |
download | django-wkhtmltopdf-61f7af8399c1ab51a0b2dff06414170947eaa228.tar.gz django-wkhtmltopdf-61f7af8399c1ab51a0b2dff06414170947eaa228.tar.bz2 django-wkhtmltopdf-61f7af8399c1ab51a0b2dff06414170947eaa228.zip |
Support moar Django
The future is now ;]
-rw-r--r-- | .travis.yml | 12 | ||||
-rw-r--r-- | wkhtmltopdf/tests/test_requirements.txt | 1 |
2 files changed, 11 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 7ff9d4e..d6bb5c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,10 +4,20 @@ python: - "2.7" - "3.3" - "3.4" +env: + - DJANGO==1.4.13 + - DJANGO==1.5.8 + - DJANGO==1.6.5 +matrix: + exclude: + - python: 3.3 + env: DJANGO==1.4.13 + - python: 3.4 + env: DJANGO==1.4.13 before_script: - "./before_script.sh" install: - - pip install -r wkhtmltopdf/tests/test_requirements.txt + - pip install $DJANGO - pip install . script: - make test diff --git a/wkhtmltopdf/tests/test_requirements.txt b/wkhtmltopdf/tests/test_requirements.txt deleted file mode 100644 index 7eedf6c..0000000 --- a/wkhtmltopdf/tests/test_requirements.txt +++ /dev/null @@ -1 +0,0 @@ -Django==1.4.13 |