Skip to content

Commit

Permalink
Fix the build_editable hook of the backend API
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed Aug 19, 2021
1 parent f42cf38 commit 325312c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poetry/core/masonry/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def build_editable(
config_settings: Optional[Dict[str, Any]] = None,
metadata_directory: Optional[str] = None,
) -> str:
poetry = Factory().create_poetry(Path(".").resolve(), with_dev=False)
poetry = Factory().create_poetry(Path(".").resolve(), with_groups=False)

return WheelBuilder.make_in(poetry, Path(wheel_directory), editable=True)

Expand Down

0 comments on commit 325312c

Please sign in to comment.