Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable the manual dist missing workaround
- I suddenly remember that pyinstaller also has this potential issue so this might fix that, i.e. when the hook to collect data files for the package metadata isn't included, something like the following might be usable: ``` from PyInstaller.utils.hooks import collect_data_files, copy_metadata datas = [] datas.extend(collect_data_files("ply")) datas.extend(copy_metadata("ply")) datas.extend(collect_data_files("calmjs.parse")) datas.extend(copy_metadata("calmjs.parse")) ``` Naturally, the pre-generated modules must already be present before they can be collected. - This might fix the issue as reported by the user of yet another non- standard Python environment in #42.
- Loading branch information