mirror of
https://github.com/astral-sh/ruff
synced 2026-01-21 13:30:49 -05:00
## Summary Follow-up release for Ruff v0.10 that now includes the following two changes that we intended to ship but slipped: * Changes to how the Python version is inferred when a `target-version` is not specified (#16319) * `blanket-noqa` (`PGH004`): Also detect blanked file-level noqa comments (and not just line level comments). ## Test plan I verified that the binary built on this branch respects the `requires-python` setting ([logs](https://www.diffchecker.com/qyJWYi6W/), left: v0.10, right: v0.11)
27 lines
445 B
TOML
27 lines
445 B
TOML
[project]
|
|
name = "scripts"
|
|
version = "0.11.0"
|
|
description = ""
|
|
authors = ["Charles Marsh <charlie.r.marsh@gmail.com>"]
|
|
|
|
|
|
python = ">=3.10,<3.12"
|
|
|
|
dependencies = ["autoflake", "autopep8", "black", "flake8", "isort", "pycodestyle", "pyflakes", "pylint", "yapf"]
|
|
|
|
[dependency-groups]
|
|
formatter = [
|
|
"black",
|
|
"yapf",
|
|
"autopep8",
|
|
]
|
|
linter = [
|
|
"autoflake",
|
|
"flake8",
|
|
"pycodestyle",
|
|
"pyflakes",
|
|
"pylint",
|
|
"isort",
|
|
]
|
|
|