Features Added
* Black tool integrated and checked in Travis.
* Versioneer support added for the code.
* Changes for ansible actions of the reboot, shutdown to be handled in PyEZ
Bugs Fixed
* sax parser filter generation generic logic 1047
* Changes for the msg displayed in case of failure in software update 1030
* fix for default ssh_config path in windows 1043
* ntc_template latest version uses textfsm 1.1.0 1042
* drop hard dependency on unittest2 1040
Note:
Due to changes in software install functionality, the return type has changed for the function sw.install.
Now it will return tuple in place of Boolean, Tuple contains Success/Failure status and software install message (if any)
Before:
python
bool_ret = sw.install(...)
Now:
python
bool_ret, msg = sw.install(...)