Skip to content

Commit ed96f2e

Browse files
fix license warning (#2413)
* [CI] fix license warning * [CI] upgrade pip
1 parent 500e2eb commit ed96f2e

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,9 @@ jobs:
366366
367367
- name: Compile
368368
if: env.SHOULD_RUN == 1
369-
run: python -m build --no-isolation
369+
run: |
370+
pip install pip setuptools wheel build -U
371+
python -m build --no-isolation
370372
371373
- name: Test install
372374
if: env.SHOULD_RUN == 1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dynamic = ["version"]
1111
description = "Production ready LLM model compression/quantization toolkit with hw accelerated inference support for both cpu/gpu via HF, vLLM, and SGLang."
1212
readme = "README.md"
1313
requires-python = ">=3.10"
14-
license = { text = "Apache-2.0" }
14+
license = "Apache-2.0"
1515
authors = [
1616
{ name = "ModelCloud", email = "qubitium@modelcloud.ai" },
1717
]

0 commit comments

Comments
 (0)