--- a/skeleton/__pkginfo__.py.tmpl Tue Apr 20 10:43:12 2010 +0200
+++ b/skeleton/__pkginfo__.py.tmpl Tue Apr 20 12:35:23 2010 +0200
@@ -43,8 +43,11 @@
# Note: here, you'll need to add subdirectories if you want
# them to be included in the debian package
-__depends_cubes__ = {}
-__depends__ = {'cubicweb': '>= 3.6.0'}
-__use__ = (%(dependancies)s)
+# a dict; you might want to provide a version specification
+# of the form '>= x.y.z'
+__depends_cubes__ = %(dependencies)s
+__depends__ = {'cubicweb': '>= 3.7.0'}
+# obsolete (will be gone in cw 3.8.0)
+__use__ = tuple(__depends_cubes__)
__recommend__ = ()