From: Francesc A. <fa...@py...> - 2004-11-08 12:11:44
|
Dear PyTables users, Unfortunately, PyTables 0.9 has received its first bug report shortly after the first release. The good news is that it has been fixed now. The problem iwas that the new setup.py won't install PyTables if either lzo or ucl are not installed on the system, although that they are optional libraries. This problem only happens on Unix platforms, though. A new version of pytables-0.9.tar.gz with a cure for this has been uploaded to: http://sourceforge.net/project/showfiles.php?group_id=63486 For those that already downloaded the tar package and don't want to download it again, it will be enough to apply the next patch: --- ../exports/pytables-0.9/setup.py 2004-11-05 16:33:58.000000000 +0100 +++ setup.py 2004-11-08 11:23:21.000000000 +0100 @@ -94,6 +94,7 @@ else: if not incdir or not libdir: print "Optional %s libraries or include files not found. Disabling support for them." % (libname,) + return else: # Necessary to include code for optional libs def_macros.append(("HAVE_"+libname.upper()+"_LIB", 1)) Sorry for the inconveniences, -- Francesc Altet |