@astrojuanlu if those areas are not critical you could wrap them in a a conditional that checks that the python version is less than 3.11
@astrojuanlu For sure, sorry I was just spitballing. The closest I can think of is to check if it’s less than 3.11. If it is then import inspect.getargspec.
If not do something like
inspect.getargspec = def blank_func():
pass
Since it’s python you can redefine it to just do nothing.
@derickflorian Thanks for the suggestion! I was looking for a tool that would do that for me though :D