Skip to content

Commit c79e332

Browse files
codewizdaveclaude
andcommitted
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

File tree

build/gui.spec

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,7 @@ a = Analysis(
7474

7575
# Excel-to-SQL
7676
'excel_to_sql',
77-
'excel_to_sql.sdk',
78-
'excel_to_sql.validators',
77+
'excel_to_sql.auto_pilot', # Used by autopilot.py for PatternDetector
7978
],
8079
hookspath=[],
8180
hooksconfig={},

0 commit comments

Comments
 (0)