Created
May 24, 2023 01:38
-
-
Save shiumachi/01ce37f527818e513f18ece4b3a01ecc to your computer and use it in GitHub Desktop.
reproduce poetry export issue with explicit source
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 = "poetry-export-issue-2023-05-23" | |
version = "0.1.0" | |
description = "" | |
authors = ["XXX <[email protected]>"] | |
readme = "README.md" | |
packages = [{include = "poetry_export_issue_2023_05_23"}] | |
[tool.poetry.dependencies] | |
python = "^3.10" | |
black = {version = "^23.3.0", source = "foo"} | |
[[tool.poetry.source]] | |
name = "foo" | |
url = "http://localhost:8080/" | |
priority = "explicit" | |
[[tool.poetry.source]] | |
name = "PyPI" | |
priority = "primary" | |
[build-system] | |
requires = ["poetry-core"] | |
build-backend = "poetry.core.masonry.api" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment