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

Tres Seaver tseaver at palladion.com
Sat Apr 15 13:08:57 EDT 2006


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

Changed:
  U   zope.schema/tags/3.0.0/CHANGES.txt
  U   zope.schema/tags/3.0.0/setup.py

-=-
Modified: zope.schema/tags/3.0.0/CHANGES.txt
===================================================================
--- zope.schema/tags/3.0.0/CHANGES.txt	2006-04-15 17:06:53 UTC (rev 67017)
+++ zope.schema/tags/3.0.0/CHANGES.txt	2006-04-15 17:08:57 UTC (rev 67018)
@@ -1,6 +1,11 @@
 zope.schema Package Changelog
 =============================
 
+zope.schema version 3.0.0.2 (2006/04/15)
+----------------------------------------
+
+- Fix packaging bug:  'package_dir' must be a *relative* path.
+
 zope.schema version 3.0.0.1 (2006/04/14)
 ----------------------------------------
 

Modified: zope.schema/tags/3.0.0/setup.py
===================================================================
--- zope.schema/tags/3.0.0/setup.py	2006-04-15 17:06:53 UTC (rev 67017)
+++ zope.schema/tags/3.0.0/setup.py	2006-04-15 17:08:57 UTC (rev 67018)
@@ -24,7 +24,7 @@
     from distutils.core import setup, Extension
 
 setup(name='zope.schema',
-      version='3.0.0.1',
+      version='3.0.0.2',
       url='http://svn.zope.org/zope.schema/tags/3.0.0',
       license='ZPL 2.1',
       description='Zope3 Data Schemas',
@@ -32,7 +32,7 @@
       author_email='zope3-dev at zope.org',
       
       packages=['zope', 'zope.schema'],
-      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