This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
forked from vllm-project/vllm
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Seperate dev requirements into lint and test (vllm-project#5474)
- Loading branch information
1 parent
2752570
commit fa895d1
Showing
4 changed files
with
42 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,5 @@ | ||
# formatting | ||
yapf==0.32.0 | ||
toml==0.10.2 | ||
tomli==2.0.1 | ||
ruff==0.1.5 | ||
codespell==2.3.0 | ||
isort==5.13.2 | ||
clang-format==18.1.5 | ||
-r requirements-lint.txt | ||
-r requirements-test.txt | ||
|
||
# type checking | ||
mypy==1.9.0 | ||
types-PyYAML | ||
types-requests==2.31.0.2 | ||
types-setuptools | ||
|
||
# testing | ||
autoawq | ||
datasets | ||
pytest | ||
tensorizer>=2.9.0 | ||
pytest-forked | ||
pytest-asyncio | ||
pytest-rerunfailures | ||
pytest-shard | ||
|
||
# testing utils | ||
awscli | ||
einops # required for MPT | ||
httpx | ||
peft | ||
requests==2.31 | ||
ray | ||
sentence-transformers # required for embedding | ||
optimum # required for hf gptq baselines | ||
auto-gptq # required for hf gptq baselines | ||
|
||
# Benchmarking | ||
aiohttp | ||
|
||
# quantization | ||
bitsandbytes==0.42.0 | ||
# Avoid adding requirements directly to this file. | ||
# Instead, modify the two files referenced above. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# formatting | ||
yapf==0.32.0 | ||
toml==0.10.2 | ||
tomli==2.0.1 | ||
ruff==0.1.5 | ||
codespell==2.3.0 | ||
isort==5.13.2 | ||
clang-format==18.1.5 | ||
|
||
# type checking | ||
mypy==1.9.0 | ||
types-PyYAML | ||
types-requests | ||
types-setuptools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# testing | ||
pytest | ||
tensorizer>=2.9.0 | ||
pytest-forked | ||
pytest-asyncio | ||
pytest-rerunfailures | ||
pytest-shard | ||
|
||
# testing utils | ||
awscli | ||
einops # required for MPT | ||
httpx | ||
peft | ||
requests | ||
ray | ||
sentence-transformers # required for embedding | ||
|
||
# Benchmarking | ||
aiohttp | ||
|
||
# quantization | ||
bitsandbytes==0.42.0 |