Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ apo = [
# It's not recommended to use agentlightning[verl] to install VERL and its dependencies.
# though it's listed here for completeness.
verl = [
"verl>=0.5.0",
"verl>=0.5.0,<0.7.0",
"vllm>=0.8.4", # Due to interface change of ExternalZeroMQDistributedExecutor
]

Expand Down Expand Up @@ -140,7 +140,9 @@ torch-gpu-stable = [
{include-group = "torch-cu128"},
"flash-attn>=2.8.3",
"tensordict>=0.9.1",
"verl>=0.6.0",
# verl 0.7.0 has breaking API changes (SPMD rollout removal, ResourcePool changes)
# that are incompatible with the current codebase
"verl>=0.6.0,<0.7.0",
]
# Use this instead of --group torch-legacy --group torch-gpu
torch-gpu-legacy = [
Expand Down
Loading