diff --git a/pyproject.toml b/pyproject.toml index d8e5b969..00ce069c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,6 @@ [build-system] requires = [ "setuptools", # FIXME: declare min/max setuptools versions? - "wheel", "Cython; python_version < '3.13'", "Cython>=3.0; python_version >= '3.13'" ] diff --git a/setup.py b/setup.py index 8040320f..72018345 100644 --- a/setup.py +++ b/setup.py @@ -93,11 +93,6 @@ if with_cython: raise -try: - from wheel.bdist_wheel import bdist_wheel -except ImportError: - bdist_wheel = None - try: from _pyyaml_pep517 import ActiveConfigSettings @@ -325,8 +320,6 @@ def run(self): 'build_ext': build_ext, 'test': test, } -if bdist_wheel: - cmdclass['bdist_wheel'] = bdist_wheel if __name__ == '__main__':