Skip to content

Commit

Permalink
Fix check on sdist version number
Browse files Browse the repository at this point in the history
Package name is cupy_xarray, not cupy-xarray.
  • Loading branch information
weiji14 committed Jun 25, 2024
1 parent a497d43 commit 308c24c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pypi-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: |
python -m twine check dist/*
pwd
if [ -f dist/cupy-xarray-0.0.0.tar.gz ]; then
if [ -f dist/cupy_xarray-0.0.0.tar.gz ]; then
echo "❌ INVALID VERSION NUMBER"
exit 1
else
Expand Down

0 comments on commit 308c24c

Please sign in to comment.