mirror of
https://github.com/astral-sh/ruff-action.git
synced 2026-05-12 20:50:14 +02:00
fde82cb611
The test was using ruff>=0.14 which is under active development, causing failures as new versions like 0.14.13 are released. This changes the fixture to use ruff>=0.13 (where 0.13.3 is the final release) and updates the expected version in the test accordingly.
16 lines
346 B
TOML
16 lines
346 B
TOML
[project]
|
|
name = "pyproject-dependency-groups-with-env-marker"
|
|
version = "0.1.0"
|
|
description = "Test fixture for issue #256 - environment markers"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff~=0.13 ; python_version >= '3.11'",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|