evolution-client-python/env/lib/python3.10/site-packages/wheel/bdist_wheel.py
2024-10-30 11:19:09 -03:00

12 lines
376 B
Python

from warnings import warn
from ._bdist_wheel import bdist_wheel as bdist_wheel
warn(
"The 'wheel' package is no longer the canonical location of the 'bdist_wheel' "
"command, and will be removed in a future release. Please update to setuptools "
"v70.1 or later which contains an integrated version of this command.",
DeprecationWarning,
stacklevel=1,
)