forked from pool/python-junos-eznc
Enable sle15_python_module_pythons, project is Python 3.8+
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-junos-eznc?expand=0&rev=36
This commit is contained in:
33
python-311.patch
Normal file
33
python-311.patch
Normal file
@@ -0,0 +1,33 @@
|
||||
Index: py-junos-eznc-2.7.0/lib/jnpr/junos/device.py
|
||||
===================================================================
|
||||
--- py-junos-eznc-2.7.0.orig/lib/jnpr/junos/device.py
|
||||
+++ py-junos-eznc-2.7.0/lib/jnpr/junos/device.py
|
||||
@@ -43,6 +43,12 @@ from jnpr.junos.exception import JSONLoa
|
||||
from ncclient.operations.third_party.juniper.rpc import ExecuteRpc
|
||||
import inspect
|
||||
|
||||
+# Python 3.11 compatibility
|
||||
+# gh#Juniper/py-junos-eznc#1236
|
||||
+if not hasattr(inspect, "getargspec"):
|
||||
+ inspect.getargspec = inspect.getfullargspec
|
||||
+
|
||||
+
|
||||
if sys.version_info[0] >= 3:
|
||||
NCCLIENT_FILTER_XML = len(inspect.signature(ExecuteRpc.request).parameters) == 3
|
||||
else:
|
||||
Index: py-junos-eznc-2.7.0/lib/jnpr/junos/utils/scp.py
|
||||
===================================================================
|
||||
--- py-junos-eznc-2.7.0.orig/lib/jnpr/junos/utils/scp.py
|
||||
+++ py-junos-eznc-2.7.0/lib/jnpr/junos/utils/scp.py
|
||||
@@ -1,6 +1,11 @@
|
||||
from __future__ import absolute_import
|
||||
import inspect
|
||||
|
||||
+# Python 3.11 compatibility
|
||||
+# gh#Juniper/py-junos-eznc#1236
|
||||
+if not hasattr(inspect, "getargspec"):
|
||||
+ inspect.getargspec = inspect.getfullargspec
|
||||
+
|
||||
from scp import SCPClient
|
||||
from jnpr.junos.utils.ssh_client import open_ssh_client
|
||||
|
||||
Reference in New Issue
Block a user