Skip to content
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ It is now maintained by Mircea Ulinic [@mirceaulinic](https://github.com/mirceau
Requirements
=============

* netmiko >= 0.5.2
* netmiko >= 4.0.0
* lxml >= 3.4.2

* IOS-XR >= 5.1.0
Expand Down
4 changes: 2 additions & 2 deletions pyIOSXR/iosxr.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
# third party lib
from lxml import etree as ET
from netmiko import ConnectHandler
from netmiko.ssh_exception import NetMikoTimeoutException
from netmiko.ssh_exception import NetMikoAuthenticationException
from netmiko.exceptions import NetMikoTimeoutException
from netmiko.exceptions import NetMikoAuthenticationException

# local modules
from pyIOSXR.exceptions import LockError
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
netmiko>=1.4.3
netmiko>=4.0.0
lxml>=3.2.4