Created
April 13, 2020 13:42
-
-
Save madig/de961d21c8f796b4fc86d984dece0fd4 to your computer and use it in GitHub Desktop.
Poetry transient extra dependency resolution bug
This file contains 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 = "test" | |
version = "0.1.0" | |
description = "" | |
authors = ["a b <[email protected]>"] | |
[tool.poetry.dependencies] | |
python = "^3.8" | |
ufolib2 = "^0.6" | |
poetry-resolver-bug-test = "*" | |
[tool.poetry.dev-dependencies] | |
isort = {version = "^4.3.21", extras = ["pyproject"]} | |
[[tool.poetry.source]] | |
name = "test" | |
url = "https://test.pypi.org/simple/" | |
secondary = true | |
[build-system] | |
requires = ["poetry>=0.12"] | |
build-backend = "poetry.masonry.api" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment