We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
memory_profiler/memory_profiler.py
Lines 941 to 951 in 025929f
In Python 3.12 distutils has been removed from the standard library.
distutils
We could
setuptools
try: from IPython.core.page import page from IPython.utils.ipstruct import Struct from IPython.core.error import UsageError except ImportError: # probably IPython < 0.11 from IPython.genutils import page from IPython.ipstruct import Struct from IPython.ipapi import UsageError
from IPython.core.page import page from IPython.utils.ipstruct import Struct from IPython.core.error import UsageError
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
memory_profiler/memory_profiler.py
Lines 941 to 951 in 025929f
In Python 3.12
distutils
has been removed from the standard library.We could
setuptools
to the dependencies (having it required for the build-system doesn't make it required for the built package).The text was updated successfully, but these errors were encountered: