How to define source with PEP 508 style dependencies #10755
Unanswered
black-snow
asked this question in
Q&A
Replies: 1 comment
-
|
Looks like an extra entry is required: dependencies = ["xyz (>=0.0.1rc9,<0.0.2)"]
[tool.poetry.dependencies]
xyz = {source = "myrepo"} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
With the
[tool.poetry.dependencies]definition I would just sayxyz = { version = "0.0.1rc9", source = "myrepo" }- I can't find anywhere how to tell the source with PEP 508-style dependencies (dependenciesand[dependency-groups]).The only thing I can spot in the grammar is URL-based lookup.
Beta Was this translation helpful? Give feedback.
All reactions