Commit 4e1dbdd7 by willmcgugan

Added simplejson dependancy to tox.ini

parent 081673c0
......@@ -16,7 +16,11 @@ try:
# is not in standard CPython >=2.6 library.
import simplejson as json
except ImportError:
import json
try:
import json
except ImportError:
print "simplejson (http://pypi.python.org/pypi/simplejson/) required"
raise
from .connection import Connection
......
......@@ -9,6 +9,7 @@ deps=dexml
pyftpdlib
[testenv:py25]
deps = simplejson
commands = nosetests -v \
[]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment