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"]