2020-12-31 13:16:00 +00:00
|
|
|
[tool.poetry]
|
|
|
|
authors = ["Robert Kaussow <mail@thegeeklab.de>"]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 5 - Production/Stable",
|
|
|
|
"Environment :: Console",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Intended Audience :: Information Technology",
|
|
|
|
"Intended Audience :: System Administrators",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
2021-10-07 07:52:45 +00:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2022-11-24 20:35:31 +00:00
|
|
|
"Programming Language :: Python :: 3.11",
|
2023-10-16 12:15:21 +00:00
|
|
|
"Programming Language :: Python :: 3.12",
|
2020-12-31 13:16:00 +00:00
|
|
|
"Topic :: Utilities",
|
|
|
|
"Topic :: Software Development",
|
|
|
|
"Topic :: Software Development :: Documentation",
|
|
|
|
]
|
|
|
|
description = "Generate documentation from annotated Ansible roles using templates."
|
|
|
|
documentation = "https://ansible-doctor.geekdocs.de/"
|
|
|
|
homepage = "https://ansible-doctor.geekdocs.de/"
|
2024-02-06 08:34:17 +00:00
|
|
|
include = ["LICENSE"]
|
2021-01-01 13:51:16 +00:00
|
|
|
keywords = ["ansible", "role", "documentation"]
|
2020-12-31 13:16:00 +00:00
|
|
|
license = "GPL-3.0-only"
|
|
|
|
name = "ansible-doctor"
|
2024-02-06 08:34:17 +00:00
|
|
|
packages = [{ include = "ansibledoctor" }]
|
2020-12-31 13:16:00 +00:00
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/thegeeklab/ansible-doctor/"
|
|
|
|
version = "0.0.0"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2024-05-06 19:29:22 +00:00
|
|
|
Jinja2 = "3.1.4"
|
2024-01-15 20:56:46 +00:00
|
|
|
anyconfig = "0.14.0"
|
2021-05-10 20:05:15 +00:00
|
|
|
appdirs = "1.4.4"
|
2022-10-25 19:27:06 +00:00
|
|
|
colorama = "0.4.6"
|
2023-12-12 07:55:06 +00:00
|
|
|
pathspec = "0.12.1"
|
2024-01-10 08:07:45 +00:00
|
|
|
python = "^3.9.0"
|
2024-02-07 21:36:59 +00:00
|
|
|
"ruamel.yaml" = "0.18.6"
|
2024-07-22 08:09:42 +00:00
|
|
|
dynaconf = "3.2.6"
|
2024-06-12 18:59:55 +00:00
|
|
|
gitpython = "3.1.43"
|
2024-05-24 07:44:19 +00:00
|
|
|
ansible-core = { version = "2.14.17", optional = true }
|
2024-07-18 08:27:23 +00:00
|
|
|
structlog = "24.4.0"
|
2024-01-10 07:32:57 +00:00
|
|
|
|
|
|
|
[tool.poetry.extras]
|
|
|
|
ansible-core = ["ansible-core"]
|
2020-12-31 13:16:00 +00:00
|
|
|
|
2023-01-20 10:56:12 +00:00
|
|
|
[tool.poetry.scripts]
|
|
|
|
ansible-doctor = "ansibledoctor.cli:main"
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
chore(deps): update dependency ruff to v0.6.1 (#758)
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [ruff](https://docs.astral.sh/ruff)
([source](https://togithub.com/astral-sh/ruff),
[changelog](https://togithub.com/astral-sh/ruff/blob/main/CHANGELOG.md))
| `0.5.7` -> `0.6.1` |
[![age](https://developer.mend.io/api/mc/badges/age/pypi/ruff/0.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/ruff/0.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/ruff/0.5.7/0.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/ruff/0.5.7/0.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
---
### Release Notes
<details>
<summary>astral-sh/ruff (ruff)</summary>
###
[`v0.6.1`](https://togithub.com/astral-sh/ruff/blob/HEAD/CHANGELOG.md#061)
[Compare
Source](https://togithub.com/astral-sh/ruff/compare/0.6.0...0.6.1)
This is a hotfix release to address an issue with `ruff-pre-commit`. In
v0.6,
Ruff changed its behavior to lint and format Jupyter notebooks by
default;
however, due to an oversight, these files were still excluded by default
if
Ruff was run via pre-commit, leading to inconsistent behavior.
This has [now been
fixed](https://togithub.com/astral-sh/ruff-pre-commit/pull/96).
##### Preview features
- \[`fastapi`] Implement `fast-api-unused-path-parameter` (`FAST003`)
([#​12638](https://togithub.com/astral-sh/ruff/pull/12638))
##### Rule changes
- \[`pylint`] Rename `too-many-positional` to
`too-many-positional-arguments` (`R0917`)
([#​12905](https://togithub.com/astral-sh/ruff/pull/12905))
##### Server
- Fix crash when applying "fix-all" code-action to notebook cells
([#​12929](https://togithub.com/astral-sh/ruff/pull/12929))
##### Other changes
- \[`flake8-naming`]: Respect import conventions (`N817`)
([#​12922](https://togithub.com/astral-sh/ruff/pull/12922))
###
[`v0.6.0`](https://togithub.com/astral-sh/ruff/blob/HEAD/CHANGELOG.md#060)
[Compare
Source](https://togithub.com/astral-sh/ruff/compare/0.5.7...0.6.0)
Check out the [blog post](https://astral.sh/blog/ruff-v0.6.0) for a
migration guide and overview of the changes!
##### Breaking changes
See also, the "Remapped rules" section which may result in disabled
rules.
- Lint and format Jupyter Notebook by default
([#​12878](https://togithub.com/astral-sh/ruff/pull/12878)).
- Detect imports in `src` layouts by default for `isort` rules
([#​12848](https://togithub.com/astral-sh/ruff/pull/12848))
- The pytest rules `PT001` and `PT023` now default to omitting the
decorator parentheses when there are no arguments
([#​12838](https://togithub.com/astral-sh/ruff/pull/12838)).
##### Deprecations
The following rules are now deprecated:
-
[`pytest-missing-fixture-name-underscore`](https://docs.astral.sh/ruff/rules/pytest-missing-fixture-name-underscore/)
(`PT004`)
-
[`pytest-incorrect-fixture-name-underscore`](https://docs.astral.sh/ruff/rules/pytest-incorrect-fixture-name-underscore/)
(`PT005`)
-
[`unpacked-list-comprehension`](https://docs.astral.sh/ruff/rules/unpacked-list-comprehension/)
(`UP027`)
##### Remapped rules
The following rules have been remapped to new rule codes:
-
[`unnecessary-dict-comprehension-for-iterable`](https://docs.astral.sh/ruff/rules/unnecessary-dict-comprehension-for-iterable/):
`RUF025` to `C420`
##### Stabilization
The following rules have been stabilized and are no longer in preview:
-
[`singledispatch-method`](https://docs.astral.sh/ruff/rules/singledispatch-method/)
(`PLE1519`)
-
[`singledispatchmethod-function`](https://docs.astral.sh/ruff/rules/singledispatchmethod-function/)
(`PLE1520`)
-
[`bad-staticmethod-argument`](https://docs.astral.sh/ruff/rules/bad-staticmethod-argument/)
(`PLW0211`)
-
[`if-stmt-min-max`](https://docs.astral.sh/ruff/rules/if-stmt-min-max/)
(`PLR1730`)
-
[`invalid-bytes-return-type`](https://docs.astral.sh/ruff/rules/invalid-bytes-return-type/)
(`PLE0308`)
-
[`invalid-hash-return-type`](https://docs.astral.sh/ruff/rules/invalid-hash-return-type/)
(`PLE0309`)
-
[`invalid-index-return-type`](https://docs.astral.sh/ruff/rules/invalid-index-return-type/)
(`PLE0305`)
-
[`invalid-length-return-type`](https://docs.astral.sh/ruff/rules/invalid-length-return-type/)
(`E303`)
-
[`self-or-cls-assignment`](https://docs.astral.sh/ruff/rules/self-or-cls-assignment/)
(`PLW0642`)
-
[`byte-string-usage`](https://docs.astral.sh/ruff/rules/byte-string-usage/)
(`PYI057`)
-
[`duplicate-literal-member`](https://docs.astral.sh/ruff/rules/duplicate-literal-member/)
(`PYI062`)
-
[`redirected-noqa`](https://docs.astral.sh/ruff/rules/redirected-noqa/)
(`RUF101`)
The following behaviors have been stabilized:
-
[`cancel-scope-no-checkpoint`](https://docs.astral.sh/ruff/rules/cancel-scope-no-checkpoint/)
(`ASYNC100`): Support `asyncio` and `anyio` context mangers.
-
[`async-function-with-timeout`](https://docs.astral.sh/ruff/rules/async-function-with-timeout/)
(`ASYNC109`): Support `asyncio` and `anyio` context mangers.
-
[`async-busy-wait`](https://docs.astral.sh/ruff/rules/async-busy-wait/)
(`ASYNC110`): Support `asyncio` and `anyio` context mangers.
-
[`async-zero-sleep`](https://docs.astral.sh/ruff/rules/async-zero-sleep/)
(`ASYNC115`): Support `anyio` context mangers.
-
[`long-sleep-not-forever`](https://docs.astral.sh/ruff/rules/long-sleep-not-forever/)
(`ASYNC116`): Support `anyio` context mangers.
The following fixes have been stabilized:
-
[`superfluous-else-return`](https://docs.astral.sh/ruff/rules/superfluous-else-return/)
(`RET505`)
-
[`superfluous-else-raise`](https://docs.astral.sh/ruff/rules/superfluous-else-raise/)
(`RET506`)
-
[`superfluous-else-continue`](https://docs.astral.sh/ruff/rules/superfluous-else-continue/)
(`RET507`)
-
[`superfluous-else-break`](https://docs.astral.sh/ruff/rules/superfluous-else-break/)
(`RET508`)
##### Preview features
- \[`flake8-simplify`] Further simplify to binary in preview for
(`SIM108`)
([#​12796](https://togithub.com/astral-sh/ruff/pull/12796))
- \[`pyupgrade`] Show violations without auto-fix (`UP031`)
([#​11229](https://togithub.com/astral-sh/ruff/pull/11229))
##### Rule changes
- \[`flake8-import-conventions`] Add `xml.etree.ElementTree` to default
conventions
([#​12455](https://togithub.com/astral-sh/ruff/pull/12455))
- \[`flake8-pytest-style`] Add a space after comma in CSV output
(`PT006`)
([#​12853](https://togithub.com/astral-sh/ruff/pull/12853))
##### Server
- Show a message for incorrect settings
([#​12781](https://togithub.com/astral-sh/ruff/pull/12781))
##### Bug fixes
- \[`flake8-async`] Do not lint yield in context manager (`ASYNC100`)
([#​12896](https://togithub.com/astral-sh/ruff/pull/12896))
- \[`flake8-comprehensions`] Do not lint `async for` comprehensions
(`C419`)
([#​12895](https://togithub.com/astral-sh/ruff/pull/12895))
- \[`flake8-return`] Only add return `None` at end of a function
(`RET503`)
([#​11074](https://togithub.com/astral-sh/ruff/pull/11074))
- \[`flake8-type-checking`] Avoid treating `dataclasses.KW_ONLY` as
typing-only (`TCH003`)
([#​12863](https://togithub.com/astral-sh/ruff/pull/12863))
- \[`pep8-naming`] Treat `type(Protocol)` et al as metaclass base
(`N805`)
([#​12770](https://togithub.com/astral-sh/ruff/pull/12770))
- \[`pydoclint`] Don't enforce returns and yields in abstract methods
(`DOC201`, `DOC202`)
([#​12771](https://togithub.com/astral-sh/ruff/pull/12771))
- \[`ruff`] Skip tuples with slice expressions in (`RUF031`)
([#​12768](https://togithub.com/astral-sh/ruff/pull/12768))
- \[`ruff`] Ignore unparenthesized tuples in subscripts when the
subscript is a type annotation or type alias (`RUF031`)
([#​12762](https://togithub.com/astral-sh/ruff/pull/12762))
- \[`ruff`] Ignore template strings passed to logging and `builtins._()`
calls (`RUF027`)
([#​12889](https://togithub.com/astral-sh/ruff/pull/12889))
- \[`ruff`] Do not remove parens for tuples with starred expressions in
Python <=3.10 (`RUF031`)
([#​12784](https://togithub.com/astral-sh/ruff/pull/12784))
- Evaluate default parameter values for a function in that function's
enclosing scope
([#​12852](https://togithub.com/astral-sh/ruff/pull/12852))
##### Other changes
- Respect VS Code cell metadata when detecting the language of Jupyter
Notebook cells
([#​12864](https://togithub.com/astral-sh/ruff/pull/12864))
- Respect `kernelspec` notebook metadata when detecting the preferred
language for a Jupyter Notebook
([#​12875](https://togithub.com/astral-sh/ruff/pull/12875))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View the
[repository job
log](https://developer.mend.io/github/thegeeklab/ansible-doctor).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-08-19 00:28:22 +00:00
|
|
|
ruff = "0.6.1"
|
2024-07-29 02:38:35 +00:00
|
|
|
pytest = "8.3.2"
|
2024-03-25 00:25:57 +00:00
|
|
|
pytest-mock = "3.14.0"
|
2024-03-25 07:34:20 +00:00
|
|
|
pytest-cov = "5.0.0"
|
2022-02-05 14:01:30 +00:00
|
|
|
toml = "0.10.2"
|
2024-06-02 07:00:07 +00:00
|
|
|
j2lint = "1.1.0"
|
|
|
|
|
2020-12-31 13:16:00 +00:00
|
|
|
|
|
|
|
[tool.poetry-dynamic-versioning]
|
|
|
|
enable = true
|
|
|
|
style = "semver"
|
|
|
|
vcs = "git"
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
2023-04-17 14:22:07 +00:00
|
|
|
addopts = "ansibledoctor --cov=ansibledoctor --cov-report=xml:coverage.xml --cov-report=term --no-cov-on-fail"
|
2020-12-31 13:16:00 +00:00
|
|
|
filterwarnings = [
|
|
|
|
"ignore::FutureWarning",
|
2023-02-10 08:02:31 +00:00
|
|
|
"ignore::DeprecationWarning",
|
2020-12-31 13:16:00 +00:00
|
|
|
"ignore:.*pep8.*:FutureWarning",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
omit = ["**/test/*"]
|
|
|
|
|
|
|
|
[build-system]
|
2023-08-24 22:09:52 +00:00
|
|
|
build-backend = "poetry_dynamic_versioning.backend"
|
2020-12-31 13:16:00 +00:00
|
|
|
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
|
2023-01-20 10:56:12 +00:00
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
exclude = [
|
2024-02-06 08:34:17 +00:00
|
|
|
".git",
|
|
|
|
"__pycache__",
|
|
|
|
"build",
|
|
|
|
"dist",
|
|
|
|
"test",
|
|
|
|
"*.pyc",
|
|
|
|
"*.egg-info",
|
|
|
|
".cache",
|
|
|
|
".eggs",
|
|
|
|
"env*",
|
2023-01-20 10:56:12 +00:00
|
|
|
]
|
2023-11-10 13:50:50 +00:00
|
|
|
|
|
|
|
line-length = 99
|
|
|
|
indent-width = 4
|
|
|
|
|
2024-02-06 08:34:17 +00:00
|
|
|
[tool.ruff.lint]
|
2023-01-20 10:56:12 +00:00
|
|
|
# Explanation of errors
|
|
|
|
#
|
|
|
|
# D102: Missing docstring in public method
|
|
|
|
# D103: Missing docstring in public function
|
|
|
|
# D105: Missing docstring in magic method
|
|
|
|
# D107: Missing docstring in __init__
|
|
|
|
# D202: No blank lines allowed after function docstring
|
|
|
|
# D203: One blank line required before class docstring
|
2023-02-10 08:02:31 +00:00
|
|
|
# D212: Multi-line docstring summary should start at the first line
|
2023-01-20 10:56:12 +00:00
|
|
|
ignore = [
|
2024-02-06 08:34:17 +00:00
|
|
|
"D102",
|
|
|
|
"D103",
|
|
|
|
"D105",
|
|
|
|
"D107",
|
|
|
|
"D202",
|
|
|
|
"D203",
|
|
|
|
"D212",
|
|
|
|
"UP038",
|
|
|
|
"RUF012",
|
2023-01-20 10:56:12 +00:00
|
|
|
]
|
|
|
|
select = [
|
2024-02-06 08:34:17 +00:00
|
|
|
"D",
|
|
|
|
"E",
|
|
|
|
"F",
|
|
|
|
"Q",
|
|
|
|
"W",
|
|
|
|
"I",
|
|
|
|
"S",
|
|
|
|
"BLE",
|
|
|
|
"N",
|
|
|
|
"UP",
|
|
|
|
"B",
|
|
|
|
"A",
|
|
|
|
"C4",
|
|
|
|
"T20",
|
|
|
|
"SIM",
|
|
|
|
"RET",
|
|
|
|
"ARG",
|
|
|
|
"ERA",
|
|
|
|
"RUF",
|
2023-01-20 10:56:12 +00:00
|
|
|
]
|
|
|
|
|
2023-11-10 13:50:50 +00:00
|
|
|
[tool.ruff.format]
|
|
|
|
quote-style = "double"
|
|
|
|
indent-style = "space"
|
|
|
|
line-ending = "lf"
|