Skip to content

Instantly share code, notes, and snippets.

@shiumachi
Created May 24, 2023 01:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shiumachi/01ce37f527818e513f18ece4b3a01ecc to your computer and use it in GitHub Desktop.
Save shiumachi/01ce37f527818e513f18ece4b3a01ecc to your computer and use it in GitHub Desktop.
reproduce poetry export issue with explicit source
[tool.poetry]
name = "poetry-export-issue-2023-05-23"
version = "0.1.0"
description = ""
authors = ["XXX <example@example.com>"]
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