Commit c79e332
fix(build): add missing excel_to_sql.auto_pilot to hiddenimports
Root cause analysis:
- Code imports PatternDetector from excel_to_sql.auto_pilot
- PyInstaller was NOT including auto_pilot module in executable
- ImportError triggers message "excel-to-sql>=0.3.0 is required"
The actual issue is NOT the version, but missing module bundling.
Excel-to-sql 0.3.0 structure:
- auto_pilot/ (PatternDetector, QualityScorer, etc.)
- sdk/ (ExcelToSqlite)
- transformations/, validators/, profiling/, ui/
Fix: Add excel_to_sql.auto_pilot to hiddenimports in spec file.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>1 parent 1d6e217 commit c79e332
1 file changed
Lines changed: 1 addition & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
74 | 74 | | |
75 | 75 | | |
76 | 76 | | |
77 | | - | |
78 | | - | |
| 77 | + | |
79 | 78 | | |
80 | 79 | | |
81 | 80 | | |
| |||
0 commit comments