Skip to content

Commit

Permalink
Bump dependency on antsibull-core and use new options.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Sep 2, 2023
1 parent 8edc21f commit fc87c2d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelogs/fragments/209-version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
minor_changes:
- "Antsibull-docs now depends on antsibull-core >= 2.1.0 (https://github.com/ansible-community/antsibull-docs/pull/209)."
bugfixes:
- "When running ``antsibull-docs --version``, the correct version is now shown also for editable installs and other installs that do not allow ``importlib.metadata`` to show the correct version (https://github.com/ansible-community/antsibull-docs/pull/209)."
- "When running ``antsibull-docs --help``, the correct program name is now shown for the ``--version`` option (https://github.com/ansible-community/antsibull-docs/pull/209)."
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ classifiers = [
requires-python = ">=3.9"
dependencies = [
"ansible-pygments",
"antsibull-core >= 2.0.0, < 3.0.0",
"antsibull-core >= 2.1.0, < 3.0.0",
"antsibull-docs-parser >= 1.0.0, < 2.0.0",
"asyncio-pool",
"docutils",
Expand Down
4 changes: 4 additions & 0 deletions src/antsibull_docs/cli/antsibull_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
from antsibull_core.config import ConfigError, load_config # noqa: E402
from antsibull_core.filesystem import UnableToCheck, writable_via_acls # noqa: E402

import antsibull_docs # noqa: E402

from ..constants import DOCUMENTABLE_PLUGINS # noqa: E402
from ..docs_parsing.fqcn import is_fqcn # noqa: E402
from ..schemas.app_context import DocsAppContext # noqa: E402
Expand Down Expand Up @@ -327,6 +329,8 @@ def parse_args(program_name: str, args: list[str]) -> argparse.Namespace:
parser = get_toplevel_parser(
prog=program_name,
package="antsibull_docs",
package_version=antsibull_docs.__version__,
program_name="antsibull-docs",
description="Script to manage generated documentation for ansible",
)
subparsers = parser.add_subparsers(
Expand Down

0 comments on commit fc87c2d

Please sign in to comment.