Skip to content

Commit

Permalink
Allow parallel uninstalls
Browse files Browse the repository at this point in the history
  • Loading branch information
adriangb committed Apr 3, 2024
1 parent 500a313 commit 35a6e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/poetry/installation/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def execute(self, operations: list[Operation]) -> int:
#
# We need to explicitly check source type here, see:
# https://github.com/python-poetry/poetry-core/pull/98
is_parallel_unsafe = operation.job_type == "uninstall" or (
is_parallel_unsafe = (
operation.package.develop
and operation.package.source_type in {"directory", "git"}
)
Expand Down

0 comments on commit 35a6e1f

Please sign in to comment.