Skip to content

Commit

Permalink
chore: bump v0.0.2.post17 for sgl-kernel (#3125)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhyncs authored Jan 25, 2025
1 parent 9852214 commit 14e754a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions sgl-kernel/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: tree ln submodule install build clean test format
.PHONY: tree ln submodule install build clean rebuild test format

tree:
@tree --prune -I "__pycache__|*.egg-info|*.so|build|3rdparty|dist"
Expand All @@ -13,11 +13,14 @@ install: submodule
@pip install -e .

build: submodule
@export MAX_JOBS=$(nproc) && python3 setup.py bdist_wheel
@rm -rf dist/* || true && export MAX_JOBS=$(nproc) && python3 setup.py bdist_wheel && pip3 install dist/*whl --force-reinstall --no-deps

clean:
@rm -rf build dist *.egg-info

rebuild: clean submodule build
@echo "Succeed to rebuild"

test:
@find tests -name "test_*.py" | xargs -n 1 python3

Expand Down
2 changes: 1 addition & 1 deletion sgl-kernel/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "sgl-kernel"
version = "0.0.2.post16"
version = "0.0.2.post17"
description = "Kernel Library for SGLang"
readme = "README.md"
requires-python = ">=3.9"
Expand Down
2 changes: 1 addition & 1 deletion sgl-kernel/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.2.post16"
__version__ = "0.0.2.post17"

0 comments on commit 14e754a

Please sign in to comment.