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
I guesss getpreferredencoding is the better option for now, as we getencoding() is 3.11+. Unless there's an argument for using getencoding and having a fallback?
nipype uses the
locale.getdefaultlocale()
function here and here. However, this function was deprecated in Python 3.11 and will be removed in Python 3.13. It should be replaced with eitherlocale.getpreferredencoding()
orlocale.getencoding()
.The text was updated successfully, but these errors were encountered: