-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare for version 24.2.0 release.
- Loading branch information
Showing
9 changed files
with
27 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
--- | ||
repos: | ||
- repo: https://github.com/tox-dev/pyproject-fmt | ||
rev: "2.2.1" | ||
rev: "2.3.0" | ||
hooks: | ||
- id: pyproject-fmt |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
[tool.ruff] | ||
src = ["src"] | ||
target-version = "py38" | ||
target-version = "py39" | ||
line-length = 100 | ||
|
||
[tool.ruff.lint] | ||
select = ["ALL"] | ||
ignore = [ | ||
"ANN", # Mypy is better at this. | ||
"COM812", # conflicts with formatter | ||
"C901", # Leave complexity to me. | ||
"D", # We have different ideas about docstrings. | ||
"INP001", # we don't care that these are in implicit namespace packages | ||
"ISC001", # conflicts with formatter | ||
"PLR0912", # Leave complexity to me. | ||
"PLR0915", # Leave complexity to me. | ||
"RUF012", # no need for this warning in Ansible modules | ||
"S101", # assert | ||
"TRY301", # Raise in try blocks can totally make sense. | ||
src = [ "src" ] | ||
lint.select = [ "ALL" ] | ||
lint.ignore = [ | ||
"ANN", # Mypy is better at this. | ||
"C901", # Leave complexity to me. | ||
"COM812", # conflicts with formatter | ||
"D", # We have different ideas about docstrings. | ||
"INP001", # we don't care that these are in implicit namespace packages | ||
"ISC001", # conflicts with formatter | ||
"PLR0912", # Leave complexity to me. | ||
"PLR0915", # Leave complexity to me. | ||
"RUF012", # no need for this warning in Ansible modules | ||
"S101", # assert | ||
"TRY301", # Raise in try blocks can totally make sense. | ||
] | ||
unfixable = ["F401"] | ||
lint.unfixable = [ "F401" ] |
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
versions={"pdns":["4.7", "4.8", "4.9", "master"], "python": ["py38", "py39", "py310", "py311", "py312", "py313"]} | ||
versions={"pdns":["4.7", "4.8", "4.9", "master"], "python": ["py39", "py310", "py311", "py312", "py313"]} |