summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Binet <bruno.binet@gmail.com>2012-01-04 18:02:27 +0100
committerBruno Binet <bruno.binet@gmail.com>2012-01-04 18:02:27 +0100
commit2e2a9ad30f228c93956067b3d0a1b2b43042aca6 (patch)
tree2a192fbd3b75f860bde705f4fb38452beabfeb8d
parentb010d8fc2716f8b08e676957dd4bf9834c369abd (diff)
downloadpyramid-2e2a9ad30f228c93956067b3d0a1b2b43042aca6.tar.gz
pyramid-2e2a9ad30f228c93956067b3d0a1b2b43042aca6.tar.bz2
pyramid-2e2a9ad30f228c93956067b3d0a1b2b43042aca6.zip
remove dependencies related to python 2.5 in alchemy scaffold
now that Pyramid requires python >= 2.6, these 2.5 dependencies are useless
-rw-r--r--pyramid/scaffolds/alchemy/setup.py_tmpl3
1 files changed, 0 insertions, 3 deletions
diff --git a/pyramid/scaffolds/alchemy/setup.py_tmpl b/pyramid/scaffolds/alchemy/setup.py_tmpl
index a2766547d..d0a95ea4c 100644
--- a/pyramid/scaffolds/alchemy/setup.py_tmpl
+++ b/pyramid/scaffolds/alchemy/setup.py_tmpl
@@ -16,9 +16,6 @@ requires = [
'zope.sqlalchemy',
]
-if sys.version_info[:3] < (2,5,0):
- requires.append('pysqlite')
-
setup(name='{{project}}',
version='0.0',
description='{{project}}',