diff --git a/src/poetry/installation/executor.py b/src/poetry/installation/executor.py index 84af089e445..701805a3cb6 100644 --- a/src/poetry/installation/executor.py +++ b/src/poetry/installation/executor.py @@ -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"} )