Commit 7c14a31
Fix ModuleNotFoundError in PyPI publish workflow (#433)
## Problem
The v4.1.6 PyPI publish workflow is failing with `ModuleNotFoundError: No module named 'SuperClaude'`.
**Failed workflow runs:**
- 5 consecutive failures since v4.1.6 release
**Root cause:**
v4.1.6 partially fixed the module import but missed updating variable references:
- ✅ Changed `import SuperClaude` → `import superclaude`
- ❌ Left `SuperClaude.__version__` unchanged (should be `superclaude.__version__`)
## Changes
Fixed 2 remaining incorrect module references:
1. **Line 125** (deployment summary step):
- `from SuperClaude import __version__` → `from superclaude import __version__`
2. **Line 164** (test installation step):
- `SuperClaude.__version__` → `superclaude.__version__`
## Context
- **Package name** (PyPI): `SuperClaude` (used for `pip install SuperClaude`)
- **Module name** (Python): `superclaude` (used for `import superclaude`)
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude <[email protected]>1 parent 4f55fcf commit 7c14a31
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
122 | 122 | | |
123 | 123 | | |
124 | 124 | | |
125 | | - | |
| 125 | + | |
126 | 126 | | |
127 | 127 | | |
128 | 128 | | |
| |||
161 | 161 | | |
162 | 162 | | |
163 | 163 | | |
164 | | - | |
165 | | - | |
| 164 | + | |
| 165 | + | |
166 | 166 | | |
167 | 167 | | |
168 | 168 | | |
| |||
0 commit comments