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

Tres Seaver tseaver at palladion.com
Sat Apr 15 12:41:52 EDT 2006


Log message for revision 67008:
  3.0.0.2:  'package_dir' must be a relative path.

Changed:
  U   zope.exceptions/tags/3.0.0/CHANGES.txt
  A   zope.exceptions/tags/3.0.0/MANIFEST.in
  U   zope.exceptions/tags/3.0.0/setup.py

-=-
Modified: zope.exceptions/tags/3.0.0/CHANGES.txt
===================================================================
--- zope.exceptions/tags/3.0.0/CHANGES.txt	2006-04-15 16:39:02 UTC (rev 67007)
+++ zope.exceptions/tags/3.0.0/CHANGES.txt	2006-04-15 16:41:51 UTC (rev 67008)
@@ -1,6 +1,16 @@
 zope.exceptions Package Changelog
 =================================
 
+zope.exceptions version 3.0.0.2 (2006/04/16)
+--------------------------------------------
+
+- Fix packaging bug:  'package_dir' must be a *relative* path.
+
+zope.exceptions version 3.0.0.1 (2006/04/14)
+--------------------------------------------
+
+- Packaging change:  suppress inclusion of 'setup.cfg' in 'sdist' builds.
+
 zope.exceptions version 3.0.0 (2004/11/07)
 ------------------------------------------
 

Added: zope.exceptions/tags/3.0.0/MANIFEST.in
===================================================================
--- zope.exceptions/tags/3.0.0/MANIFEST.in	2006-04-15 16:39:02 UTC (rev 67007)
+++ zope.exceptions/tags/3.0.0/MANIFEST.in	2006-04-15 16:41:51 UTC (rev 67008)
@@ -0,0 +1 @@
+exclude setup.cfg

Modified: zope.exceptions/tags/3.0.0/setup.py
===================================================================
--- zope.exceptions/tags/3.0.0/setup.py	2006-04-15 16:39:02 UTC (rev 67007)
+++ zope.exceptions/tags/3.0.0/setup.py	2006-04-15 16:41:51 UTC (rev 67008)
@@ -24,7 +24,7 @@
     from distutils.core import setup, Extension
 
 setup(name='zope.exceptions',
-      version='3.0.0',
+      version='3.0.0.2',
       url='http://svn.zope.org/zope.exceptions/tags/3.0.0',
       license='ZPL 2.1',
       description='Zope 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