From 9dc8ec2ccd4d7164ff817ff06efc6299155c14de Mon Sep 17 00:00:00 2001 From: =?utf8?q?=D0=A0=D1=83=D1=81=D1=82=D0=B0=D0=BC=20=D0=9A=D0=B0=D1=88?= =?utf8?q?=D0=B0=D0=BF=D0=BE=D0=B2?= Date: Fri, 3 Oct 2014 09:41:37 +0400 Subject: [PATCH] egg building and installation is added to travis.yml --- .travis.yml | 4 +++- setup.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8e92579..34278d9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,8 @@ env: install: + - python setup.py bdist_egg + - easy_install "dist/$(ls dist)" - pip install -r requirements.txt script: - - python setup.py test \ No newline at end of file + - python setup.py test diff --git a/setup.py b/setup.py index 35be3a1..aa19d56 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( ], install_requires=[ 'django-model-utils == 2.0.3', - 'Django >= 1.5.1', + 'Django >= 1.5.1, <= 1.7', 'Pillow == 2.5.0' ], test_suite='runtests.runtests' -- 2.39.5