| Server IP : 217.160.0.216 / Your IP : 216.73.217.104 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u116689255 ( 10217649) PHP Version : 8.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib/python3/dist-packages/wheel/ |
Upload File : |
from warnings import warn
ERROR = """\
The 'wheel.bdist_wheel' module has been removed.
Please update your setuptools to v70.1 or later.
If you're explicitly importing 'wheel.bdist_wheel', please update your import to point \
to 'setuptools.command.bdist_wheel' instead.
"""
try:
from setuptools.command.bdist_wheel import bdist_wheel as bdist_wheel
except ModuleNotFoundError as exc:
raise ImportError(ERROR) from exc
warn(ERROR, DeprecationWarning, stacklevel=2)