File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ def make_repo_script_list(instance: RepoInstance, repo_directory: str) -> list[s
134
134
if ".txt" in package :
135
135
cmd = f"uv pip install -r { package } "
136
136
else :
137
- package = package .split (';' )[0 ].strip ()
137
+ package = package .split (";" )[0 ].strip ()
138
138
cmd = f"uv pip install '{ package } '"
139
139
setup_commands .append (cmd )
140
140
elif isinstance (specs ["packages" ], str ):
@@ -150,7 +150,7 @@ def make_repo_script_list(instance: RepoInstance, repo_directory: str) -> list[s
150
150
151
151
# Install additional packages if specified
152
152
if "pip_packages" in specs and specs ["pip_packages" ] is not None :
153
- pip_packages = [one .split (';' )[0 ].strip () for one in specs ["pip_packages" ]]
153
+ pip_packages = [one .split (";" )[0 ].strip () for one in specs ["pip_packages" ]]
154
154
pip_packages = [f'"{ one } "' for one in pip_packages ]
155
155
pip_packages = " " .join (pip_packages )
156
156
cmd = f"uv pip install { pip_packages } "
You can’t perform that action at this time.
0 commit comments