diff --git a/setup.py b/setup.py index 530b413a98b..6cfc48de5c9 100644 --- a/setup.py +++ b/setup.py @@ -37,15 +37,6 @@ "Try running: python -m ensurepip" ) -if "bdist_wheel" in sys.argv: - try: - import wheel # noqa: F401 - except ImportError: - sys.exit( - "We need both setuptools AND wheel packages installed " - "for bdist_wheel to work. Try running: pip install wheel" - ) - # Make sure we have the right Python version. MIN_PY_VER = (3, 9)