Eh Tan added the comment: The problem is at line 890, setup.py, r60970.
sqlite_libfile = self.compiler.find_library_file( sqlite_dirs_to_check + lib_dirs, 'sqlite3') sqlite_libdir = [os.path.abspath(os.path.dirname(sqlite_libfile))] self.compiler.find_library_file() will return None if the library is not found. The code passes None to os.path.dirname and cause the error. ---------- nosy: +tan2 _____________________________________ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1706863> _____________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com