There was an error while loading. Please reload this page.
1 parent e966480 commit 962260eCopy full SHA for 962260e
src/hatch/env/virtual.py
@@ -204,11 +204,14 @@ def sync_dependencies(self):
204
205
all_install_args = []
206
207
- workspace_deps = [str(dep.path) for dep in self.local_dependencies_complex if dep.path]
+ workspace_deps = [dep for dep in self.local_dependencies_complex if dep.path]
208
workspace_names = {dep.name.lower() for dep in self.local_dependencies_complex if dep.path}
209
210
- for dep_path in workspace_deps:
211
- all_install_args.extend(["--editable", dep_path])
+ for dep in workspace_deps:
+ if dep.editable:
212
+ all_install_args.extend(["--editable", dep.path])
213
+ else:
214
+ all_install_args.append(dep.path)
215
216
standard_dependencies = []
217
0 commit comments