Commit 067acf75 authored by Reinout van Rees's avatar Reinout van Rees

Requiring setuptools > 3.3 for the replace=True option on working_set.add()

Perhaps older versions also support this option, but at least 0.7.2 does not.
So I picked the oldest version I had handy in my buildout egg cache...
parent 1d2bdcc8
...@@ -88,7 +88,7 @@ setup( ...@@ -88,7 +88,7 @@ setup(
package_dir = {'': 'src'}, package_dir = {'': 'src'},
namespace_packages = ['zc'], namespace_packages = ['zc'],
install_requires = [ install_requires = [
'setuptools>=0.7', 'setuptools>=3.3',
], ],
include_package_data = True, include_package_data = True,
entry_points = entry_points, entry_points = entry_points,
...@@ -108,4 +108,3 @@ setup( ...@@ -108,4 +108,3 @@ setup(
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Libraries :: Python Modules',
], ],
) )
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment