We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 795274d commit d41acccCopy full SHA for d41accc
1 file changed
nemo_gym/cli.py
@@ -66,10 +66,10 @@ def _capture_head_server_dependencies() -> Optional[Path]: # pragma: no cover
66
return None
67
68
69
-def _setup_env_command(dir_path: Path, constraints_file: Optional[str] = None) -> str: # pragma: no cover
+def _setup_env_command(dir_path: Path, head_server_deps_file: Optional[str] = None) -> str: # pragma: no cover
70
install_cmd = "uv pip install -r requirements.txt"
71
- if constraints_file:
72
- install_cmd += f" --constraint {constraints_file.absolute()}"
+ if head_server_deps_file:
+ install_cmd += f" --constraint {head_server_deps_file.absolute()}"
73
74
return f"""cd {dir_path} \\
75
&& uv venv --allow-existing \\
0 commit comments