Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions Lib/test/.ruff.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
extend = "../../.ruff.toml" # Inherit the project-wide settings

target-version = "py312"
# Unlike Tools/, tests can use newer syntax than PYTHON_FOR_REGEN
target-version = "py314"

extend-exclude = [
# Excluded (run with the other AC files in its own separate ruff job in pre-commit)
Expand All @@ -15,15 +16,6 @@ extend-exclude = [
"test_grammar.py",
]

[per-file-target-version]
# Type parameter defaults
"test_type_params.py" = "py313"

# Template string literals
"test_annotationlib.py" = "py314"
"test_string/test_templatelib.py" = "py314"
"test_tstring.py" = "py314"

[lint]
select = [
"F811", # Redefinition of unused variable (useful for finding test methods with the same name)
Expand Down
Loading