We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddb12be commit 74bc0c2Copy full SHA for 74bc0c2
.github/workflows/publish.yml
@@ -53,7 +53,7 @@ jobs:
53
run: |
54
# Try installing from Test PyPI first, fall back to building locally
55
pip install -i https://test.pypi.org/simple/ claude-parser || pip install dist/*.whl
56
- python -c "from claude_parser import load; print('✅ Import successful')"
+ python -c "import claude_parser; print(f'✅ Import successful: v{claude_parser.__version__}')"
57
58
- name: Publish to PyPI
59
if: github.event_name == 'release' || github.event.inputs.version != ''
0 commit comments