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
Hi! 👋
We're currently cleaning up packages for the Python 3.12 rebuild on Arch Linux.
I noticed that the tests in this repository are still using the imp module
Qt.py/tests.py
Line 6 in 2c0f4dc
This module has been removed with Python 3.12: https://docs.python.org/dev/whatsnew/3.12.html#imp
The text was updated successfully, but these errors were encountered:
Use importlib on Python > 3.11 in tests
20276c3
As the imp module is removed with Python 3.12, use importlib instead. https://docs.python.org/dev/whatsnew/3.12.html#imp Fixes: mottosso#395 Signed-off-by: David Runge <dave@sleepmap.de>
Successfully merging a pull request may close this issue.
Hi! 👋
We're currently cleaning up packages for the Python 3.12 rebuild on Arch Linux.
I noticed that the tests in this repository are still using the imp module
Qt.py/tests.py
Line 6 in 2c0f4dc
This module has been removed with Python 3.12:
https://docs.python.org/dev/whatsnew/3.12.html#imp
The text was updated successfully, but these errors were encountered: