From 2b8c9ca39a6989e5b4e45e9a217ddfb7c6a2ecbf Mon Sep 17 00:00:00 2001 From: giovannibajo Date: Mon, 17 May 2010 13:39:19 +0000 Subject: [PATCH] Add import hook for PyTables. git-svn-id: http://svn.pyinstaller.org/trunk@834 8dd32b29-ccff-0310-8a9a-9233e24343b1 --- doc/CHANGES.txt | 1 + hooks/hook-tables.py | 1 + 2 files changed, 2 insertions(+) create mode 100644 hooks/hook-tables.py diff --git a/doc/CHANGES.txt b/doc/CHANGES.txt index e121d24..b04c770 100644 --- a/doc/CHANGES.txt +++ b/doc/CHANGES.txt @@ -4,6 +4,7 @@ Changes since PyInstaller 1.4 ----------------------------- * Fix spurious KeyError when using dbhash * Fix import of nested packages made from Pyrex-generated files. + + Add import hook for PyTables. Changes since PyInstaller 1.3 diff --git a/hooks/hook-tables.py b/hooks/hook-tables.py new file mode 100644 index 0000000..6588759 --- /dev/null +++ b/hooks/hook-tables.py @@ -0,0 +1 @@ +hiddenimports = ["tables._comp_lzo", "tables._comp_bzip2"]