Skip to content

Commit 9195edd

Browse files
authored
-y is not a valid option for uv pip uninstall, this was a hold-over from the switch from pip to uv pip (#3026)
1 parent 0929d04 commit 9195edd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openc3/lib/openc3/models/python_package_model.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def self.install(name_or_path, scope:)
9999
def self.destroy(name, scope:)
100100
package_name, version = self.extract_name_and_version(name)
101101
Logger.info "Uninstalling package: #{name}"
102-
pip_args = ["-y", package_name]
102+
pip_args = [package_name]
103103
result = OpenC3::ProcessManager.instance.spawn(["/openc3/bin/pipuninstall"] + pip_args, "package_uninstall", name, Time.now + 3600.0, scope: scope)
104104
return result.name
105105
end

0 commit comments

Comments
 (0)