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!
Python 3.12 has dropped distutils. This isn't the end of the world for whipper, as it's only used here:
distutils
https://github.com/whipper-team/whipper/blob/develop/whipper/command/main.py#L42-L45
Even so, this code will fail on 3.12 and should be replaced by something else.
The text was updated successfully, but these errors were encountered:
Seems like we can do this to replace get_python_lib:
get_python_lib
import sysconfig sysconfig.get_path('platlib')
Sorry, something went wrong.
That was added in Python 3.2, so we could probably just rely on it.
Actually 'purelib' might be a better path/place for some of the plugins, but I haven't yet found a way to use /usr/local through sysconfig.
/usr/local
sysconfig
No branches or pull requests
Hi!
Python 3.12 has dropped
distutils
. This isn't the end of the world for whipper, as it's only used here:https://github.com/whipper-team/whipper/blob/develop/whipper/command/main.py#L42-L45
Even so, this code will fail on 3.12 and should be replaced by something else.
The text was updated successfully, but these errors were encountered: