JohannesBuchner / PyMultiNest

Pythonic Bayesian inference and visualization for the MultiNest Nested Sampling Algorithm and PyCuba's cubature algorithms.
http://johannesbuchner.github.io/PyMultiNest/
Other
194 stars 88 forks source link

deprecation removal getargspec -> getfullargspec #225

Closed ColmTalbot closed 1 year ago

ColmTalbot commented 1 year ago

Hi @JohannesBuchner I noticed PyMultiNest fails with Python 3.11 due to the long-awaited removal of inspect.getargspec. This PR just changes that call to inspect.getfullargspec and is enough for me to get it running again with Python 3.11.

JohannesBuchner commented 1 year ago

Thank you!