mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
## 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 <noreply@anthropic.com>