[Zope3-checkins] CVS: Zope3 - setup.py:1.40

Fred Drake cvs-admin at zope.org
Tue Nov 4 12:28:10 EST 2003


Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv20587

Modified Files:
	setup.py 
Log Message:
Now that Python 2.3.2 or newer is required, we can always get the logging
package from Python's standard library.  Removing it from Zope 3.


=== Zope3/setup.py 1.39 => 1.40 ===
--- Zope3/setup.py:1.39	Sun Sep 21 13:29:52 2003
+++ Zope3/setup.py	Tue Nov  4 12:27:40 2003
@@ -130,12 +130,6 @@
 os.path.walk(basedir, finder.visit, None)
 packages = finder.get_packages()
 
-# The logging package is standard in Python 2.3.  Don't include it unless
-# we're building a source distribution.
-if 'sdist' not in sys.argv:
-    if sys.hexversion >= 0x02030000:
-        packages.remove('logging')
-
 # Distutils hook classes
 class MyBuilder(buildcmd):
     def run(self):




More information about the Zope3-Checkins mailing list