Skip to content

Commit

Permalink
build_editable added in python-poetry#182 referenced non-existent 'wi…
Browse files Browse the repository at this point in the history
…th_dev' parameter in the Factory.create_poetry call. Removed this parameter from the call.
  • Loading branch information
airstandley committed Aug 18, 2021
1 parent 5812d6d commit 1811899
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())

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

Expand Down

0 comments on commit 1811899

Please sign in to comment.