Open uyoung-jeong opened 5 months ago
thank you - please merge @mattloper
thank you - please merge @mattloper
If you want to use fixed version from this PR in your project you can install chumpy from fixing commit directly
pip install git+https://github.com/mattloper/chumpy@9b045ff5d6588a24a0bab52c83f032e2ba433e17
waiting for merge
Hi, I faced below error while importing chumpy in python 3.11 environment.
AttributeError: module 'inspect' has no attribute 'getargspec'. Did you mean: 'getargs'?
It seemed that starting from python 3.11, getargspec is no longer available and we should use getfullargspec instead. So I made a small change for supporting both getargspec and getfullargspec.