Skip to content

Commit

Permalink
Merge pull request #647 from nautobot/main
Browse files Browse the repository at this point in the history
Main
  • Loading branch information
itdependsnetworks authored Oct 4, 2023
2 parents d9a56d4 + 7392942 commit 6f6d189
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
db-backend: ["postgresql"]
nautobot-version: ["latest"]
nautobot-version: ["stable"]
# The include is a method to limit the amount of jobs ran. This essentially
# means that in addition to standard postgres and stable, also the lowest
# supported version and with mysql
Expand All @@ -134,7 +134,7 @@ jobs:
nautobot-version: "2.0.0"
- python-version: "3.8"
db-backend: "mysql"
nautobot-version: "latest"
nautobot-version: "stable"
runs-on: "ubuntu-20.04"
env:
INVOKE_NAUTOBOT_GOLDEN_CONFIG_PYTHON_VER: "${{ matrix.python-version }}"
Expand Down
4 changes: 2 additions & 2 deletions invoke.example.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
nautobot_golden_config:
project_name: "nautobot-golden-config"
nautobot_ver: "latest"
nautobot_ver: "2.0.0"
local: false
python_ver: "3.8"
python_ver: "3.11"
compose_dir: "development"
compose_files:
- "docker-compose.base.yml"
Expand Down
4 changes: 2 additions & 2 deletions invoke.mysql.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
nautobot_golden_config:
project_name: "nautobot-golden-config"
nautobot_ver: "latest"
nautobot_ver: "2.0.0"
local: false
python_ver: "3.8"
python_ver: "3.11"
compose_dir: "development"
compose_files:
- "docker-compose.base.yml"
Expand Down
2 changes: 1 addition & 1 deletion nautobot_golden_config/utilities/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
handler = logging.StreamHandler()
handler.setLevel(logging.NOTSET)
LOGGER.addHandler(handler)
LOGGER_ADAPTER = logging.LoggerAdapter(LOGGER)
LOGGER_ADAPTER = logging.LoggerAdapter(LOGGER, extra={})


class NornirLogger:
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

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

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,12 @@ python = ">=3.8,<3.12"
deepdiff = ">=5.5.0,!=6.0,!=6.1,<7"
django-pivot = "1.8.1" # The signature changed to return a non-queryset, do not upgrade without ensuring it returns a queryset
matplotlib = "^3.3.2"
nautobot = "^2.0.0"
nautobot-plugin-nornir = "^2.0.0"

toml = "^0.10.2"
netutils = "^1.5.0"
hier-config = "^2.2.2"
nautobot-capacity-metrics = "^3.0.0"
nautobot-capacity-metrics = "^3.0.1"

[tool.poetry.group.dev.dependencies]
bandit = "*"
Expand Down

0 comments on commit 6f6d189

Please sign in to comment.