You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The inspect module for Python 3.11 no longer has the attribute inspect.getargspec, this needs to be changed to inspect.getfullargspec
There may be other 3.11 compatibility issues but this is the first one I've encountered using this package.
I am developing on a Windows 11 system, targeting Linux for final build (in Dockers), pretty standard.
This issue can be found in the adapter.py file at line # 150 if hasattr(self.cls, method_name): match = getattr(self.cls, method_name) spec = inspect.getargspec(match)
should be: if hasattr(self.cls, method_name): match = getattr(self.cls, method_name) spec = inspect.getfullargspec(match)
The text was updated successfully, but these errors were encountered:
The
inspect
module for Python 3.11 no longer has the attributeinspect.getargspec
, this needs to be changed toinspect.getfullargspec
There may be other 3.11 compatibility issues but this is the first one I've encountered using this package.
I am developing on a Windows 11 system, targeting Linux for final build (in Dockers), pretty standard.
This issue can be found in the
adapter.py
file at line # 150if hasattr(self.cls, method_name): match = getattr(self.cls, method_name) spec = inspect.getargspec(match)
should be:
if hasattr(self.cls, method_name): match = getattr(self.cls, method_name) spec = inspect.getfullargspec(match)
The text was updated successfully, but these errors were encountered: