Skip to content

Commit 19de857

Browse files
committed
Update dependencies
1 parent 3cffa42 commit 19de857

File tree

5 files changed

+505
-464
lines changed

5 files changed

+505
-464
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: "actions/checkout@v4"
2525
- uses: "astral-sh/setup-uv@v5"
2626
with:
27-
version: "0.7.17"
27+
version: "0.9.30"
2828
- run: "./run.sh setup"
2929
- run: "./run.sh lint"
3030

@@ -36,16 +36,16 @@ jobs:
3636
strategy:
3737
matrix:
3838
python-version:
39-
- "3.9"
4039
- "3.10"
4140
- "3.11"
4241
- "3.12"
4342
- "3.13"
43+
- "3.14"
4444
steps:
4545
- uses: "actions/checkout@v4"
4646
- uses: "astral-sh/setup-uv@v5"
4747
with:
48-
version: "0.7.17"
48+
version: "0.9.30"
4949
python-version: "${{ matrix.python-version }}"
5050
- run: "./run.sh setup"
5151
- run: "./run.sh test-build"

.readthedocs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ build:
1414
jobs:
1515
create_environment:
1616
- "asdf plugin add uv"
17-
- "asdf install uv 0.7.17"
18-
- "asdf global uv 0.7.17"
17+
- "asdf install uv 0.9.30"
18+
- "asdf global uv 0.9.30"
1919
install:
2020
- "uv sync --no-dev"
2121
post_install:

docs/release_notes.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ This document describes all new features and changes in this project's releases.
1111

1212
This section contains (if any) changes that have not yet been released.
1313

14+
### Changed
15+
16+
- Added Python 3.14 and dropped Python 3.9.
17+
18+
### Housekeeping
19+
20+
- Updated `uv` to `0.9.30`.
21+
1422
## [v1.1.0 (2025-07-01)](https://github.com/cmsirbu/mkdocs-ansible-collection/releases/tag/v1.1.0)
1523

1624
This release makes major improvements to the plugin parameters table in line with other ansible documentation sites (see [gql_inventory](https://mkdocs-ansible-collection.readthedocs.io/en/latest/networktocode.nautobot/inventory/gql_inventory.html) for a detailed showcase) and fixes an ugly display bug for plugin descriptions.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ classifiers = [
1515
"License :: OSI Approved :: MIT License",
1616
"Operating System :: OS Independent",
1717
"Programming Language :: Python :: 3",
18-
"Programming Language :: Python :: 3.9",
1918
"Programming Language :: Python :: 3.10",
2019
"Programming Language :: Python :: 3.11",
2120
"Programming Language :: Python :: 3.12",
2221
"Programming Language :: Python :: 3.13",
22+
"Programming Language :: Python :: 3.14",
2323
"Topic :: Documentation",
2424
"Topic :: Text Processing",
2525
]
26-
requires-python = ">=3.9"
26+
requires-python = ">=3.10"
2727
dependencies = [
2828
"mkdocs (>=1.6.0,<2.0.0)",
29-
"ansible-core (>=2.15,<3.0)"
29+
"ansible-core (>=2.16,<3.0)"
3030
]
3131

3232
[dependency-groups]

0 commit comments

Comments
 (0)