Update of /cvsroot/pyxml/xml
In directory usw-pr-cvs1:/tmp/cvs-serv30038
Modified Files:
setup.py
Log Message:
Bump minimum expat version.
Index: setup.py
===================================================================
RCS file: /cvsroot/pyxml/xml/setup.py,v
retrieving revision 1.58
retrieving revision 1.59
diff -C2 -r1.58 -r1.59
*** setup.py 2001/11/27 20:22:59 1.58
--- setup.py 2001/12/21 15:10:48 1.59
***************
*** 69,73 ****
# Memory leak fixes, merged into 2.33
# Wrong array boundaries fixed in 2.35
! if pyexpat.__version__ <= '2.39':
if 'pyexpat' in sys.builtin_module_names:
print "Error: builtin expat library will conflict with ours"
--- 69,74 ----
# Memory leak fixes, merged into 2.33
# Wrong array boundaries fixed in 2.35
! # UpdatePairedHandlers fixed in 2.54
! if pyexpat.__version__ <= '2.53':
if 'pyexpat' in sys.builtin_module_names:
print "Error: builtin expat library will conflict with ours"
|