Skip to content

Commit

Permalink
update to ncclient>=0.6.15
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-sahlmann committed Oct 20, 2023
1 parent 1a927a2 commit ee31d04
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mb_netmgmt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# along with mb-netmgmt. If not, see <https://www.gnu.org/licenses/

"""Network Management Protocols for Mountebank"""
__version__ = "0.0.72"
__version__ = "0.0.73"

import os
import subprocess
Expand Down
3 changes: 2 additions & 1 deletion mb_netmgmt/netconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,15 @@
from ncclient.transport.parser import DefaultXMLParser
from ncclient.transport.session import (
BASE_NS_1_0,
MSG_DELIM,
HelloHandler,
NetconfBase,
SessionListener,
qualify,
sub_ele,
to_ele,
)
from ncclient.transport.ssh import MSG_DELIM, PORT_NETCONF_DEFAULT, SSHSession
from ncclient.transport.ssh import PORT_NETCONF_DEFAULT, SSHSession

from mb_netmgmt.__main__ import Protocol
from mb_netmgmt.ssh import start_server
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi"
name = "mb_netmgmt"
dynamic = ["version", "description"]
dependencies = [
"ncclient",
"ncclient>=0.6.15",
"paramiko>=2.12.0",
"ruamel.yaml",
"requests",
Expand Down

0 comments on commit ee31d04

Please sign in to comment.