Is there a reason for the following in requirements.txt
?
When I try to pip install this combination, I receive the following error:
The conflict is caused by:
The user requested torch>2.6
vllm 0.7.3 depends on torch==2.5.1
vllm 0.7.2 depends on torch==2.5.1
vllm 0.7.1 depends on torch==2.5.1
vllm 0.7.0 depends on torch==2.5.1
vllm 0.6.6.post1 depends on torch==2.5.1
vllm 0.6.6 depends on torch==2.5.1
vllm 0.6.5 depends on torch==2.5.1; platform_machine != “aarch64”
vllm 0.6.4.post1 depends on torch==2.5.1
vllm 0.6.4 depends on torch==2.5.1
vllm 0.6.3.post1 depends on torch==2.4.0
vllm 0.6.3 depends on torch==2.4.0
vllm 0.6.2 depends on torch==2.4.0
It seems that vllm < 0.8
requires torch < 2.6
. Is it possible to install vllm < 0.8
and torch > 2.6
? Will this succeed or fail during submission?