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 locale.getdefaultlocale() function was deprecated in Python 3.11 and will be removed in 3.13 (see the note in the library docs). The deprecation warning issued when running says use setlocale(), getencoding() and getlocale() instead.
Thank you for opening your first issue in this project! Engagement like this is essential for open source projects! 🤗
If you haven't done so already, check out Jupyter's Code of Conduct. Also, please try to follow the issue template as it helps other other community members to contribute more effectively.
You can meet the other Jovyans by joining our Discourse forum. There is also an intro thread there where you can stop by and say Hi! 👋
The
locale.getdefaultlocale()
function was deprecated in Python 3.11 and will be removed in 3.13 (see the note in the library docs). The deprecation warning issued when running saysuse setlocale(), getencoding() and getlocale() instead
.The only place it is used is crypto/encoding.py:
nativeauthenticator/nativeauthenticator/crypto/encoding.py
Lines 187 to 198 in 3db8285
I guess either
locale.getencoding()
orlocale.getpreferredencoding
would be a suitable replacement.The text was updated successfully, but these errors were encountered: