Created
December 15, 2023 04:49
-
-
Save lucemia/ea041236e05d6ca44e6e860d32e1e3e2 to your computer and use it in GitHub Desktop.
Poetry Dependency Resolution Issue while Dependency extras with source
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "private-package-b" | |
version = "0.0.0" | |
description = "" | |
[tool.poetry.dependencies] | |
private-package-a = { version = "*", source = "source-a" } | |
[[tool.poetry.source]] | |
name = "source-a" | |
priority = "explicit" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "repo-a" | |
version = "0.0.0" | |
description = "" | |
[tool.poetry.dependencies] | |
private-package-a = { version = "*", source = "source-a", extras = ["extra-a"] } | |
private-package-b = { version = "*", source = "source-a" } | |
[[tool.poetry.source]] | |
name = "source-a" | |
priority = "explicit" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment