-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Py 3.13 support? #594
Comments
Hi, I put the line to Gemini and it suggested something. Could you please review? The answer from Gemini is: Here's how to migrate
This code defines a function The example usage shows how to use the Here are some additional things to keep in mind:
I hope this helps! Let me know if you have any other questions. |
I actually think it got this thing wrong (and the code too), it should have been salt-than-hash, not hash-than-salt (from what I understand). |
The existing code uses |
Since Python 3.13 has removed the crypt module, add legacycrypt to the requirements if we're using that version of Python, importing it if the crypt module isn't found. Fixes networktocode#594
Since Python 3.13 has removed the crypt module, add legacycrypt to the optional requirements, attempting to import it if the crypt module isn't found. Fixes networktocode#594
Environment
Running tests on netutils in a python 3.13 enviroment indicates that it will no longer work:
Proposed Functionality
tests should pass on python 3.13.
The text was updated successfully, but these errors were encountered: