Skip to content

Commit

Permalink
addons: Remove '--satisfied-skip-solved' flag from conda command
Browse files Browse the repository at this point in the history
  • Loading branch information
ales-erjavec committed Dec 9, 2024
1 parent 70e3d16 commit 22dcaec
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions orangecanvas/application/utils/addons.py
Original file line number Diff line number Diff line change
Expand Up @@ -615,14 +615,12 @@ def _find_conda(self):
def install(self, pkg):
version = "={}".format(pkg.version) if pkg.version is not None else ""
cmd = [self.conda, "install", "--yes", "--quiet",
"--satisfied-skip-solve",
self._normalize(pkg.name) + version]
return run_command(cmd)

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

Expand Down

0 comments on commit 22dcaec

Please sign in to comment.