[Checkins] SVN: zc.recipe.macro/trunk/ Fixed a missing import bug in setup.py.

Aaron Lehmann aaron at zope.com
Fri Jul 11 13:44:03 EDT 2008


Log message for revision 88262:
  Fixed a missing import bug in setup.py.
  
  

Changed:
  U   zc.recipe.macro/trunk/CHANGES.txt
  U   zc.recipe.macro/trunk/setup.py

-=-
Modified: zc.recipe.macro/trunk/CHANGES.txt
===================================================================
--- zc.recipe.macro/trunk/CHANGES.txt	2008-07-11 15:44:48 UTC (rev 88261)
+++ zc.recipe.macro/trunk/CHANGES.txt	2008-07-11 17:44:02 UTC (rev 88262)
@@ -1,9 +1,10 @@
 CHANGES
 =======
 
-1.3.0 (unreleased)
+1.2.2 (2008-07-11)
 ------------------
 
+Fixed a bug in setup.py where setuptools was not being imported
 Changed date format in CHANGES.txt to YYYY-MM-DD
 
 

Modified: zc.recipe.macro/trunk/setup.py
===================================================================
--- zc.recipe.macro/trunk/setup.py	2008-07-11 15:44:48 UTC (rev 88261)
+++ zc.recipe.macro/trunk/setup.py	2008-07-11 17:44:02 UTC (rev 88262)
@@ -12,6 +12,7 @@
 #
 ##############################################################################
 import os
+import setuptools
 from setuptools import setup, find_packages
 
 # generic helpers primarily for the long_description



More information about the Checkins mailing list