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
Starting in python 3.11 importlib's read_text and open_text are deprecated with a warning...
DeprecationWarning: read_text is deprecated. Use files() instead. self._contracts = json.loads(importlib.resources.read_text(tinyman.v1, 'asc.json'))
DeprecationWarning: open_text is deprecated. Use files() instead. with open_text(package, resource, encoding, errors) as fp:
Py 3.11 is already available for Ubuntu, and the newest version of Debian is expected to carry it as well. So this might matter soon.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Starting in python 3.11 importlib's read_text and open_text are deprecated with a warning...
DeprecationWarning: read_text is deprecated. Use files() instead. self._contracts = json.loads(importlib.resources.read_text(tinyman.v1, 'asc.json'))
DeprecationWarning: open_text is deprecated. Use files() instead. with open_text(package, resource, encoding, errors) as fp:
Py 3.11 is already available for Ubuntu, and the newest version of Debian is expected to carry it as well. So this might matter soon.
The text was updated successfully, but these errors were encountered: