summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-11-24 23:07:58 -0500
committerChris McDonough <chrism@plope.com>2010-11-24 23:07:58 -0500
commit81e648ffded9caa9480c0053c11a0bc15afbc39a (patch)
treefd028e8c342bcad1a3fec1cf8fa25d0f5d479e44 /setup.py
parentb64d22c7e5692e10434eec83f6e2c64a4fed6a9e (diff)
downloadpyramid-81e648ffded9caa9480c0053c11a0bc15afbc39a.tar.gz
pyramid-81e648ffded9caa9480c0053c11a0bc15afbc39a.tar.bz2
pyramid-81e648ffded9caa9480c0053c11a0bc15afbc39a.zip
- New boolean Mako settings variable ``mako.strict_undefined``. See `Mako
Context Variables <http://www.makotemplates.org/docs/runtime.html#context-variables>`_ for its meaning. - Depend on Mako 0.3.6+ (we now require the ``strict_undefined`` feature).
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index c1939f73c..75f5b13dd 100644
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,7 @@ except IOError:
install_requires=[
'Chameleon >= 1.2.3',
- 'Mako',
+ 'Mako >= 0.3.6', # strict_undefined
'Paste > 1.7', # temp version pin to prevent PyPi install failure :-(
'PasteDeploy',
'PasteScript',