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
4 changes: 2 additions & 2 deletions .github/workflows/pub-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
contents: read
steps:
- uses: actions/checkout@main
- name: Set up Python 3.7
- name: Set up Python 3.12
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.12
- name: Install pypa/build
run: >-
python -m
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: "3.11"
python-version: "3.12"
- name: flake8 Lint
uses: py-actions/flake8@v2
5 changes: 4 additions & 1 deletion netbox-plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
version: 0.1
package_name: netbox-floorplan-plugin
compatibility:
- release: 0.6.0
netbox_min: 4.2.0
netbox_max: 4.2.1
- release: 0.5.0
netbox_min: 4.1.0
netbox_max: 4.1.7
netbox_max: 4.1.11
- release: 0.4.1
netbox_min: 4.0.2
netbox_max: 4.0.11
Expand Down
4 changes: 2 additions & 2 deletions netbox_floorplan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ class FloorplanConfig(PluginConfig):
description = ""
version = __version__
base_url = "floorplan"
min_version = "4.1.0"
max_version = "4.1.99"
min_version = "4.2.0"
max_version = "4.2.99"


config = FloorplanConfig
2 changes: 1 addition & 1 deletion netbox_floorplan/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.0"
__version__ = "0.6.0"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ def get_version(rel_path):
packages=find_packages(),
include_package_data=True,
zip_safe=False,
min_version="4.1.0",
max_version="4.1.99"
min_version="4.2.0",
max_version="4.2.99"
)
Loading