Skip to content

Commit c641317

Browse files
committed
upd
1 parent cbb15d3 commit c641317

1 file changed

Lines changed: 7 additions & 8 deletions

File tree

.github/workflows/release-pypi-flashinfer-cubin-wheel.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -122,18 +122,17 @@ jobs:
122122
pip install dist/flashinfer_cubin*.whl
123123
124124
# Test import and check for cubins
125-
python -c "
125+
python -c '
126126
import flashinfer_cubin
127-
print(f'✓ Successfully imported flashinfer_cubin')
127+
print("✓ Successfully imported flashinfer_cubin")
128128
from pathlib import Path
129-
import flashinfer_cubin
130-
cubin_dir = Path(flashinfer_cubin.__file__).parent / 'cubins'
129+
cubin_dir = Path(flashinfer_cubin.__file__).parent / "cubins"
131130
if cubin_dir.exists():
132-
cubins = list(cubin_dir.rglob('*.cubin'))
133-
print(f'✓ Found {len(cubins)} cubin files in package')
131+
cubins = list(cubin_dir.rglob("*.cubin"))
132+
print(f"✓ Found {len(cubins)} cubin files in package")
134133
else:
135-
print('⚠ Warning: cubins directory not found in package')
136-
"
134+
print("⚠ Warning: cubins directory not found in package")
135+
'
137136
138137
deactivate
139138
rm -rf test-env

0 commit comments

Comments
 (0)