summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDylan Baker <baker.dylan.c@gmail.com>2016-02-11 15:19:57 -0800
committerDylan Baker <baker.dylan.c@gmail.com>2016-02-18 13:49:55 -0800
commit7c0960dfdb51643c4e8bea7ca68ea49e57d2c404 (patch)
tree0431f7f1a66db2e084b011f59b6cb3fc24e279fc /tox.ini
parentc7fe9388826465596b390d42a92c99fd87df5fee (diff)
tox.ini: Set the mako version to the minimum version in cmake
We actually define a minimum required mako version in cmake. Since tox is supposed to be useful for testing, we should test that version. Mako 1.0.2 contains bug fixes for python 3.5. For versions of python earlier than 3.5 0.8.0, is still sufficient, but for 3.5 1.0.2 is needed. CMake is updated to check this as well. Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 2 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index bc6567249..f609deb18 100644
--- a/tox.ini
+++ b/tox.ini
@@ -6,7 +6,6 @@ skipsdist=True
[testenv]
passenv=HOME
deps =
- mako
nose
coverage
six==1.5.2
@@ -16,6 +15,8 @@ deps =
py27-{accel,noaccel}: mock==1.0.1
py27-accel: backports.lzma
py27-accel: subprocess32
+ py{27,33,34}: mako==0.8.0
+ py35: mako==1.0.2
generator: numpy
commands =
{accel,noaccel}: nosetests unittests []