mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-07-14 01:41:23 -06:00
12 lines
376 B
Python
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,
|
|
)
|