summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-11-02 04:21:02 +0000
committerChris McDonough <chrism@agendaless.com>2009-11-02 04:21:02 +0000
commit81447b5941dcb26301b47423f7e06b78e31339ae (patch)
tree3e00c61f4dd5d98d6a11716722eb160e4f0e90f5 /setup.py
parent8dedfad9e666bccc84c52d1440e8acf9bff215e3 (diff)
downloadpyramid-81447b5941dcb26301b47423f7e06b78e31339ae.tar.gz
pyramid-81447b5941dcb26301b47423f7e06b78e31339ae.tar.bz2
pyramid-81447b5941dcb26301b47423f7e06b78e31339ae.zip
Depend on new "Chameleon" package (rather than individual chameleon.zpt and chameleon.core packages).
Somehow we also need to depend on sourcecodegen or the tests fail (even though Chameleon depends on them too). Don't run coverage tests by default when running nosetests (pass --with-coverage to "setup.py nosetests" to obtain the older behavior). Ignore .coverage in trunk/repoze/bfg Pass where=repoze/bfg to avoid running other repoze tests, for whatever reason.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 51cbc3775..7c78677b3 100644
--- a/setup.py
+++ b/setup.py
@@ -28,8 +28,8 @@ except IOError:
install_requires=[
'setuptools',
- 'chameleon.core >= 1.0b32', # non-lxml version
- 'chameleon.zpt >= 1.0b16', # newest version as of non-xml core release
+ 'Chameleon',
+ 'sourcecodegen>=0.6.11', # tests fail without this requirement? (wtf)
'Paste',
'PasteDeploy',
'PasteScript',