forked from vllm-project/vllm
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
4 changed files
with
42 additions
and
36 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,37 +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 | ||
types-setuptools | ||
|
||
# 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 | ||
# 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 |