You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The only supported way of accessing disutils is via the importing distutils name (provided by setuptools via a MetaPathFinder). setuptools._distutils is a private implementation detail and importing directly from it is error prone (can break the monkey patching).
The text was updated successfully, but these errors were encountered:
Please don't import from
setuptools._distutils
directly, as this can cause problems (see pypa/setuptools#3743 for example).mypy/mypyc/build.py
Lines 61 to 64 in 8236c93
The only supported way of accessing
disutils
is via the importingdistutils
name (provided bysetuptools
via aMetaPathFinder
).setuptools._distutils
is a private implementation detail and importing directly from it is error prone (can break the monkey patching).The text was updated successfully, but these errors were encountered: