forked from housepbass/napalm-panos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Passing a commit comment requires minimum netmiko 3.3.2. Latest NAPAL…
…M 2.x version, which is 2.5, requires netmiko 2.4.2. Therefore in order to support passing a commit comment, upgrading minimumn required versions of packages to NAPALM 3.0, which drops support for Python versions <3.6, and netmiko to 3.3.2, which is where passing a commit comment is first time supported.
- Loading branch information
Showing
4 changed files
with
29 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
coveralls | ||
pydocstyle==3.0.0 | ||
pytest | ||
pytest==5.4.3 | ||
pytest-cov | ||
pytest-json | ||
pytest-pythonpath | ||
|
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,7 +1,7 @@ | ||
napalm>=2.3.0 | ||
napalm>=3.0.0,<4.0 | ||
lxml==4.3.5 | ||
pan-python | ||
netmiko>=3.3.2 | ||
netmiko>=3.3.2,<4.0 | ||
requests-toolbelt | ||
xmltodict | ||
future |
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,5 +1,5 @@ | ||
[tox] | ||
envlist = py27,py34,py35 | ||
envlist = py36 | ||
|
||
[testenv] | ||
deps = | ||
|