We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
warning during tests:
/dahuffman/codecs/init.py:24: DeprecationWarning: path is deprecated. Use files() instead. Refer to https://importlib-resources.readthedocs.io/en/latest/using.html#migrating-from-legacy for migration advice. with importlib.resources.path("dahuffman.codecs", resource=name) as path:
The text was updated successfully, but these errors were encountered:
importlib.resources.path is deprecated since python 3.11 and the new "files" based API is available since python 3.9.
importlib.resources.path
minimum supported python version is still 3.7, so 2 version bumps would be required to replace the deprecated usage with the new recommended usage
Sorry, something went wrong.
No branches or pull requests
warning during tests:
The text was updated successfully, but these errors were encountered: