Skip to content

Instantly share code, notes, and snippets.

@delphyne
Last active February 12, 2019 16:35
Show Gist options
  • Save delphyne/f087208fc112b0c817ca53950aa40a73 to your computer and use it in GitHub Desktop.
Save delphyne/f087208fc112b0c817ca53950aa40a73 to your computer and use it in GitHub Desktop.
invalid toml for differing extras
[tool.poetry]
name = "extras_gist"
version = "0.1.0"
description = ""
authors = ["delphyne <delphyne@not.a.real.address>"]
[tool.poetry.dependencies]
python = "^3.6"
pytest = "*"
pytest = {version = "*", extras = "testing", optional = true}
[tool.poetry.extras]
foo = ["pytest"]
[tool.poetry.dev-dependencies]
[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