Skip to content

Commit 22dcaec

Browse files
committed
addons: Remove '--satisfied-skip-solved' flag from conda command
1 parent 70e3d16 commit 22dcaec

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

orangecanvas/application/utils/addons.py

-2
Original file line numberDiff line numberDiff line change
@@ -615,14 +615,12 @@ def _find_conda(self):
615615
def install(self, pkg):
616616
version = "={}".format(pkg.version) if pkg.version is not None else ""
617617
cmd = [self.conda, "install", "--yes", "--quiet",
618-
"--satisfied-skip-solve",
619618
self._normalize(pkg.name) + version]
620619
return run_command(cmd)
621620

622621
def upgrade(self, pkg):
623622
version = "={}".format(pkg.version) if pkg.version is not None else ""
624623
cmd = [self.conda, "install", "--yes", "--quiet",
625-
"--satisfied-skip-solve",
626624
self._normalize(pkg.name) + version]
627625
return run_command(cmd)
628626

0 commit comments

Comments
 (0)