Skip to content

Commit 269b6c0

Browse files
shuaillssleepcooFrankLeeeee
committed
Fix lint
Co-authored-by: sleepcoo <[email protected]> Co-authored-by: FrankLeeeee <[email protected]>
1 parent ef65b40 commit 269b6c0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scripts/ci_install_dependency.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ pip install cuda-python nvidia-cuda-nvrtc-cu12
2727

2828
# reinstall sgl-kernel
2929
pip uninstall -y sgl-kernel || true
30-
pip install sgl-kernel --force-reinstall --no-deps
30+
pip install sgl-kernel --force-reinstall --no-deps

sgl-kernel/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ docker run --rm \
2727
cd /sgl-kernel && \
2828
${PYTHON_ROOT_PATH}/bin/python -c 'import setuptools; import importlib.util; print(\"setuptools version:\", setuptools.__version__); import wheel; print(\"wheel version:\", wheel.__version__); print(\"wheel modules:\", dir(wheel))' && \
2929
ls -la ${PYTHON_ROOT_PATH}/lib/python${PYTHON_VERSION}/site-packages/wheel/ && \
30-
PYTHONPATH=${PYTHON_ROOT_PATH}/lib/python${PYTHON_VERSION}/site-packages ${PYTHON_ROOT_PATH}/bin/python -m pip wheel . --no-deps
30+
PYTHONPATH=${PYTHON_ROOT_PATH}/lib/python${PYTHON_VERSION}/site-packages ${PYTHON_ROOT_PATH}/bin/python setup.py bdist_wheel
3131
"

sgl-kernel/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020

2121
import torch
2222
from setuptools import find_packages, setup
23-
from wheel.bdist_wheel import bdist_wheel
2423
from setuptools.command.build_py import build_py
2524
from torch.utils.cpp_extension import BuildExtension, CUDAExtension
25+
from wheel.bdist_wheel import bdist_wheel
2626

2727
root = Path(__file__).parent.resolve()
2828

0 commit comments

Comments
 (0)