Hi, is it possible to manage editable dependencies...
# general
s
Hi, is it possible to manage editable dependencies with uv and using pants to package my app? When I try to do it, I get the following error when I try to run my app: No module named 'editable-lib' pyproject.toml looks like this:
Copy code
[project]
name = "myapp"
version = "0.1.0"
description = "Basic app"
requires-python = ">=3.11"
dependencies = [
    "editable-lib",
]

[tool.uv.sources]
editable-lib = { path = "../../editable-lib", editable = true }
h
Pants can’t handle editable local deps that way, it can read pyproject.toml dependencies but expects them to be published. It wants to grok local first party code itself, as a
python_sources()
.
s
ok thanks