Skip to content

Commit

Permalink
Add Deoendencies
Browse files Browse the repository at this point in the history
  • Loading branch information
aditnryn committed May 2, 2015
1 parent a1ae069 commit 7ba92fa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
language: python
python: 2.7
python:
- 2.7
env:
- TOX_ENV=py27-dj14
- TOX_ENV=py27-dj15
- TOX_ENV=py27-dj16
- TOX_ENV=py27-dj17
- TOX_ENV=pep8

matrix:
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
from setuptools import setup, find_packages
from aldryn_wow import __version__

REQUIREMENTS = []
REQUIREMENTS = [
'django_sekizai',
'djangocms_admin_style',
]

CLASSIFIERS = [
'Development Status :: 2 - Pre-Alpha',
Expand Down
6 changes: 2 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
[tox]
envlist = py27-dj{14,15,16}, pep8
envlist = py27-dj{15,16}, pep8

[testenv]
recreate = False
deps =
-rtest_requirements.txt
dj{14,15}: django-discover-runner
dj14: Django<1.5
dj15: Django<1.6
dj16: Django<1.7
commands =
Expand All @@ -15,5 +13,5 @@ commands =
coverage report

[testenv:pep8]
commands = pep8 --repeat --show-source --max-line-length=120 --exclude=env,.tox,dist,migrations aldryn_wow setup.py
commands = pep8 --repeat --show-source --max-line-length=80 --exclude=env,.tox,dist,migrations aldryn_wow setup.py
deps = pep8

0 comments on commit 7ba92fa

Please sign in to comment.