Skip to content

Commit

Permalink
Merge pull request #22126 from jakevdp:ruff-py-version
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 647100411
  • Loading branch information
jax authors committed Jun 26, 2024
2 parents bf0e735 + 8ebd8a3 commit ee945b2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ exclude = [
]
line-length = 88
indent-width = 2
target-version = "py39"
target-version = "py310"

[tool.ruff.lint]
ignore = [
Expand All @@ -115,6 +115,8 @@ ignore = [
"F841",
# Raise with from clause inside except block
"B904",
# Zip without explicit strict parameter
"B905",
]
select = [
"B9",
Expand Down

0 comments on commit ee945b2

Please sign in to comment.