-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ name = "replete" | |
maintainers = [{ name = "Artem Vasenin", email = "[email protected]" }] | ||
authors = [{ name = "Anton Vasilev" }, { name = "Artem Vasenin" }] | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
requires-python = ">=3.10" | ||
dynamic = ["description", "version"] | ||
dependencies = ["coloredlogs", "docstring-parser", "python-dateutil", "xxhash"] | ||
|
||
|
@@ -36,7 +36,7 @@ strictParameterNoneValue = false | |
typeCheckingMode = "basic" | ||
|
||
[tool.ruff] | ||
target-version = "py39" | ||
target-version = "py310" | ||
line-length = 120 | ||
[tool.ruff.lint] | ||
preview = true | ||
|
@@ -45,17 +45,17 @@ fixable = ["ALL"] | |
ignore = ["A003", "E203", "FIX002", "FURB113", "N817", "PTH123", "RET503", "S113", "TD002", "TD003", "TRY003", "UP007", "UP035"] | ||
[tool.ruff.lint.per-file-ignores] | ||
"**/__init__.py" = [ | ||
"F401", # Allow unused imports in module files | ||
"F401", # Allow unused imports in module files | ||
] | ||
"tests/test_cli.py" = [ | ||
"W291", # Need to ignore it for correct formatting | ||
"W291", # Need to ignore it for correct formatting | ||
] | ||
"tests/**/*.py" = [ | ||
"E501", # Test strings can be long | ||
"FBT001", # We don't expect to call the tests | ||
"S101", # Asserts in tests are fine | ||
"T201", # Prints are useful for debugging | ||
"TCH001", | ||
"TCH002", | ||
"TCH003", # Tests don't need to be super performant, prefer simpler code | ||
"E501", # Test strings can be long | ||
"FBT001", # We don't expect to call the tests | ||
"S101", # Asserts in tests are fine | ||
"T201", # Prints are useful for debugging | ||
"TCH001", | ||
"TCH002", | ||
"TCH003", # Tests don't need to be super performant, prefer simpler code | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters