Skip to content

Add NetBox 4.2 to CI #1366

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jan 12, 2025
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
uses: psf/black@stable

unit_testing:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: linting
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11"]
python-version: ["3.13"]

steps:

Expand All @@ -39,7 +39,7 @@ jobs:
virtualenvs-create: false

- name: Install Python packages
run: poetry install
run: poetry install --no-root

- name: Build and install collection
run: |
Expand All @@ -62,17 +62,17 @@ jobs:
runs-on: ubuntu-latest
needs: unit_testing
env:
python-version: "3.12"
python-version: "3.13"
strategy:
fail-fast: false
matrix:
include:
- VERSION: "v3.7"
NETBOX_DOCKER_VERSION: 2.7.0
include:
- VERSION: "v4.0"
NETBOX_DOCKER_VERSION: 2.9.1
- VERSION: "v4.1"
NETBOX_DOCKER_VERSION: 3.0.1
- VERSION: "v4.2"
NETBOX_DOCKER_VERSION: 3.1.0

steps:

Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
virtualenvs-create: false

- name: Install Python packages
run: poetry install
run: poetry install --no-root

- name: Build and install collection
run: |
Expand Down
2,054 changes: 1,042 additions & 1,012 deletions poetry.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ authors = ["Mikhail Yohman <[email protected]>"]
license = "GPLv3"

[tool.poetry.dependencies]
python = "^3.10"
ansible-core = "^2.17"
python = "^3.13"
ansible-core = "^2.18"
black = "*"
codecov = "*"
coverage = "7.3.2"
coverage = "7.6.1"
deepdiff = "*"
cryptography = "*"
jinja2 = "*"
Expand All @@ -28,7 +28,7 @@ pylint = "*"
pytz = "*"
packaging = "*"
importlib-resources = "*"
antsibull-docs = "^2.11.0"
antsibull-docs = "*"

[tool.poetry.dev-dependencies]

Expand Down
Loading
Loading