renovate/lib/manager/poetry/__fixtures__/pyproject.1.toml
Michael Kriese 905cef7bc5
feat: support toml v0.5.0 (#7559)
Co-authored-by: Jamie Magee <JamieMagee@users.noreply.github.com>
2020-10-27 09:57:53 +01:00

29 lines
551 B
TOML

[tool.poetry]
name = "example 1"
version = "0.1.0"
description = ""
authors = ["John Doe <john.doe@gmail.com>"]
[tool.poetry.dependencies]
dep1_ = "0.0.0"
dep1 = "0.0.0"
dep2 = "^0.6.0"
dep3 = "^0.33.6"
python = "~2.7 || ^3.4"
[tool.poetry.extras]
extra_dep1 = "^0.8.3"
extra_dep2 = "^0.9.4"
extra_dep3 = "^0.4.0"
[tool.poetry.dev-dependencies]
dev_dep1 = "^3.0"
dev_dep2 = "Invalid version."
[build-system]
requires = ["poetry>=1.0", "wheel"]
build-backend = "poetry.masonry.api"
[tool.coverage]
run.omit = ["*/tests_*.py"]
report.precision = 2