-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b9725f
commit cc971de
Showing
8 changed files
with
1,148 additions
and
1,218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# v3.0.0 Release Notes | ||
|
||
## [3.0.0] 01-2024 | ||
|
||
### Changed | ||
|
||
- Updated `pyntc` dependency to 2.0.0, which contains updates related to changes in netmiko 4.0. In short `delay_factor` was deprecated in favor of `read_timeout`. | ||
|
||
Refer to this blog post for more info about changes in netmiko 4.0: https://pynet.twb-tech.com/blog/netmiko-read-timeout.html | ||
|
||
### Removed | ||
|
||
- Dropped support for python3.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "nornir-pyntc" | ||
version = "2.0.0" | ||
version = "3.0.0" | ||
description = "pyntc plugin for Nornir" | ||
authors = ["Network to Code, LLC <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -11,8 +11,8 @@ repository = "https://github.com/networktocode-llc/nornir_pyntc" | |
"pyntc" = "nornir_pyntc.connections:Pyntc" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
pyntc = "^1.0.0" | ||
python = "^3.8" | ||
pyntc = "^2.0.0" | ||
nornir = "^3.2.0" | ||
|
||
[tool.poetry.dev-dependencies] | ||
|
@@ -39,7 +39,7 @@ mkdocs-version-annotations = "1.0.0" | |
nornir_pyntc = 'nornir_pyntc.cli:main' | ||
|
||
[tool.mypy] | ||
python_version = 3.7 | ||
python_version = 3.8 | ||
ignore_errors = false | ||
disallow_untyped_calls = true | ||
disallow_untyped_defs = true | ||
|
@@ -62,7 +62,7 @@ show_error_codes = true | |
|
||
[tool.black] | ||
line-length = 120 | ||
target-version = ['py37'] | ||
target-version = ['py38'] | ||
include = '\.pyi?$' | ||
exclude = ''' | ||
( | ||
|
@@ -92,7 +92,6 @@ no-docstring-rgx="^(_|test_|Meta$)" | |
# Pylint and Black disagree about how to format multi-line arrays; Black wins. | ||
disable = """, | ||
line-too-long, | ||
bad-continuation, | ||
duplicate-code, | ||
""" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters