Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.13"]
python-version: ["3.11", "3.12", "3.13"]

steps:

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ This Ansible collection consists of a set of modules to define the intended netw

- You must be running one of the two most recent releases of NetBox
- A NetBox write-enabled API token when using modules or a read-only token for the `nb_lookup` and `nb_inventory` plugins.
- Python 3.10+
- Python 3.11+
- Python modules:
- pytz
- pynetbox
- Ansible 2.15+
- Ansible 2.18+

## Installation

Expand Down
3 changes: 3 additions & 0 deletions changelogs/fragments/python_versions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
minor_changes:
- test suite expanded to run on Python 3.11, 3.12, and 3.13.
12 changes: 8 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Mikhail Yohman <mikhail.yohman@gmail.com>"]
license = "GPLv3"

[tool.poetry.dependencies]
python = "^3.13"
python = ">=3.11,<3.14"
ansible-core = "^2.18"
black = "*"
codecov = "*"
Expand All @@ -30,7 +30,10 @@ packaging = "*"
importlib-resources = "*"
antsibull-docs = "*"

[tool.poetry.dev-dependencies]
[poetry.group.dev.dependencies]

[tool.ruff]
target-version = "py311"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down
Loading