Skip to content

Commit 74bc0c2

Browse files
committed
fix: Correct import test in publish workflow
1 parent ddb12be commit 74bc0c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: |
5454
# Try installing from Test PyPI first, fall back to building locally
5555
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')"
56+
python -c "import claude_parser; print(f'✅ Import successful: v{claude_parser.__version__}')"
5757
5858
- name: Publish to PyPI
5959
if: github.event_name == 'release' || github.event.inputs.version != ''

0 commit comments

Comments
 (0)