mirror of
https://github.com/astral-sh/ruff-action.git
synced 2026-05-12 20:50:14 +02:00
966d2455d2
While Poetry does now support PEP 508, it's still common to use `tool.poetry.dependencies` - we for example still use it because Renovate does not support doing lockfile updates for Poetry when using PEP 508. This modifies the version finder logic to support determining the Ruff version from `pyproject.toml` files that use ``tool.poetry.dependencies`
15 lines
336 B
TOML
15 lines
336 B
TOML
[project]
|
|
name = "pyproject-dependency-poetry-grouped-project"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
sphinx = "*"
|
|
ruff = "0.8.3"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|