Skip to content

Commit 8dc50a7

Browse files
authored
Merge pull request #318 from ales-erjavec/fixes/conda-satisfied-skip-solve
[FIX] Fix addon updates (remove '--satisfied-skip-solved' flag from conda command)
2 parents 8a08552 + 22dcaec commit 8dc50a7

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)