Skip to content

Commit

Permalink
Update ruff-base.toml for Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
taldcroft authored Mar 28, 2024
1 parent f5b6821 commit 185c1fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/ruff-base.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copied originally from pandas. This config requires ruff >= 0.2.
target-version = "py310"
target-version = "py311"

# fix = true
lint.unfixable = []
Expand Down Expand Up @@ -55,4 +55,4 @@ max-line-length = 100 # E501 reports lines that exceed the length of 100.
# - D205: Don't worry about test docstrings
# - ARG001: Unused function argument false positives for some fixtures
# - E501: Line-too-long
"**/tests/test_*.py" = ["D205", "ARG001", "E501"]
"**/tests/test_*.py" = ["D205", "ARG001", "E501"]

0 comments on commit 185c1fe

Please sign in to comment.