From 1811899f8c2cf39e7d2cdd8ebad6dde66e08d949 Mon Sep 17 00:00:00 2001 From: Andrew Standley Date: Wed, 18 Aug 2021 15:08:35 -0700 Subject: [PATCH] build_editable added in #182 referenced non-existent 'with_dev' parameter in the Factory.create_poetry call. Removed this parameter from the call. --- poetry/core/masonry/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poetry/core/masonry/api.py b/poetry/core/masonry/api.py index 0c53b2b50..f0ea8688f 100644 --- a/poetry/core/masonry/api.py +++ b/poetry/core/masonry/api.py @@ -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)