+1.1
+===
+
+* Bugfix: on devait ajouter auf.recipe.django aux eggs (#2555)
+
+* Bugfix: les scripts plantaient lorsque les eggs d'apps étaient zippés (#2601)
+
1.0
====
# of the app_name but the project directory itself isn't on the path.
try:
modules = find_modules(part, paths)
- paths = [m[1] for m in modules]
+ paths = [m[1] for m in modules if isinstance(m, tuple)]
except ImportError,e:
if os.path.basename(os.getcwd()) != part:
raise e
project_dir = os.path.join(base_dir, self.options['project'])
extra_paths = self.get_extra_paths()
- requirements, ws = self.egg.working_set(['djangorecipe'])
+ requirements, ws = self.egg.working_set(['auf.recipe.django'])
script_paths = []
import sys, os
name = 'auf.recipe.django'
-version = '1.0'
+version = '1.1'
setup(name=name,
version=version,
'setuptools',
'zc.buildout',
'zc.recipe.egg',
- 'djangorecipe',
+ 'djangorecipe>=0.23.1',
],
entry_points="""
# -*- Entry points: -*-