[Checkins] SVN: zope.exceptions/tags/3.2.0/ 3.2.0.2: 'package_dir' must be a relative path.

Tres Seaver tseaver at palladion.com
Sat Apr 15 12:48:09 EDT 2006


Log message for revision 67009:
  3.2.0.2:  'package_dir' must be a relative path.

Changed:
  U   zope.exceptions/tags/3.2.0/CHANGES.txt
  U   zope.exceptions/tags/3.2.0/setup.py

-=-
Modified: zope.exceptions/tags/3.2.0/CHANGES.txt
===================================================================
--- zope.exceptions/tags/3.2.0/CHANGES.txt	2006-04-15 16:41:51 UTC (rev 67008)
+++ zope.exceptions/tags/3.2.0/CHANGES.txt	2006-04-15 16:48:09 UTC (rev 67009)
@@ -1,6 +1,11 @@
 zope.exceptions Package Changelog
 =================================
 
+zope.exceptions version 3.2.0.1 (2006/04/15)
+--------------------------------------------
+
+- Fix packaging bug:  'package_dir' must be a *relative* path.
+
 zope.exceptions version 3.2.0.1 (2006/04/14)
 --------------------------------------------
 

Modified: zope.exceptions/tags/3.2.0/setup.py
===================================================================
--- zope.exceptions/tags/3.2.0/setup.py	2006-04-15 16:41:51 UTC (rev 67008)
+++ zope.exceptions/tags/3.2.0/setup.py	2006-04-15 16:48:09 UTC (rev 67009)
@@ -24,7 +24,7 @@
     from distutils.core import setup, Extension
 
 setup(name='zope.exceptions',
-      version='3.2.0.1',
+      version='3.2.0.2',
       url='http://svn.zope.org/zope.exceptions',
       license='ZPL 2.1',
       description='exceptions',
@@ -36,7 +36,7 @@
                        "package.",
       
       packages=['zope', 'zope.exceptions'],
-      package_dir = {'': os.path.join(os.path.dirname(__file__), 'src')},
+      package_dir = {'': 'src'},
 
       namespace_packages=['zope',],
       tests_require = ['zope.testing'],



More information about the Checkins mailing list