From: Рустам Кашапов Date: Fri, 3 Oct 2014 05:41:37 +0000 (+0400) Subject: egg building and installation is added to travis.yml X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=9dc8ec2ccd4d7164ff817ff06efc6299155c14de;p=django_quiz.git egg building and installation is added to travis.yml --- 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'