You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i'm trying to use rye sync with a python monorepo and root:uri
the resolution of folders doesn't seem to work. for example
"askluna-dotenv @ {root:uri}/../../packages/dotenv" => error: Distribution not found at: file:///Users/shravansunder/Documents/dev/project-dev/askluna-project/packages/dotenv
error: could not write production lockfile for workspace
"askluna-dotenv @ {root:uri}/../packages/dotenv" =>error: Distribution not found at: file:///Users/shravansunder/Documents/dev/project-dev/askluna-project/askluna/apps/packages/dotenv
So for some reason, ../../ seems to traverse by more than 2 folders up instead of exactly 2 folders. And ../ only traverses 1 folder up
The text was updated successfully, but these errors were encountered:
I don't know that uv has any control over how that URL gets resolved. I believe we just ask Hatch for the metadata, and it returns the resolved file path.
Related question @charliermarsh so with uv (and ruff) whats the recommended mechanism to point to a local package in a monorepo. I've searched all the issues and unable to find a solution that doesn't use absolute paths from user folder.
I can make a related discussion if that's better for this
i'm trying to use rye sync with a python monorepo and root:uri
the resolution of folders doesn't seem to work. for example
So for some reason,
../../
seems to traverse by more than 2 folders up instead of exactly 2 folders. And../
only traverses 1 folder upThe text was updated successfully, but these errors were encountered: