Commit d222411a by finswimmer Committed by GitHub

fix: as_uri() can only be applied to an absolute path (#7266)

parent 7105971f
...@@ -249,7 +249,7 @@ class EditableBuilder(Builder): ...@@ -249,7 +249,7 @@ class EditableBuilder(Builder):
json.dumps( json.dumps(
{ {
"dir_info": {"editable": True}, "dir_info": {"editable": True},
"url": self._poetry.file.path.parent.as_uri(), "url": self._poetry.file.path.parent.absolute().as_uri(),
} }
) )
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment