[Zodb-checkins] CVS: Releases/StandaloneZODB - setup.py:1.5
jeremy@digicool.com
jeremy@digicool.com
Thu, 19 Apr 2001 12:54:02 -0400 (EDT)
Update of /cvs-repository/Releases/StandaloneZODB
In directory korak:/tmp/cvs-serv15616
Modified Files:
setup.py
Log Message:
Remove crufty attempt to support Python 1.5.2.
--- Updated File setup.py in package Releases/StandaloneZODB --
--- setup.py 2001/04/18 20:47:09 1.4
+++ setup.py 2001/04/19 16:54:00 1.5
@@ -58,21 +58,6 @@
headers = ["ZODB/cPersistence.h"]
)
-# ZEO
-if sys.hexversion < 0x01060000:
- # XXX this code probably does not work
- ext_modules = [Extension(name = 'ZEO.cPickle',
- sources = ['cPickle.c']) ]
- async_modules = ['ZEO.asyncore', 'ZEO.asynchat']
-else:
- ext_modules = []
- async_modules = []
-
-zeo_modules = ['ZEO.ClientCache', 'ZEO.ClientStorage',
- 'ZEO.Invalidator', 'ZEO.StorageServer',
- 'ZEO.__init__', 'ZEO.smac', 'ZEO.start',
- 'ZEO.zrpc']
-
setup(name = "ZEO",
version = "0.4.1",
description = "Zope Enterprise Objects",
@@ -80,7 +65,6 @@
author_email = "zodb-dev@zope.org",
url = "http://www.zope.org/Products/ZEO",
- ext_modules = ext_modules,
packages = ['ZEO', 'ZEO.tests'],
)