From 3cd1541f5f6be83e4a5f6cf75104a34bc881d4c2 Mon Sep 17 00:00:00 2001 From: Ryan Mast Date: Mon, 3 Feb 2025 08:55:08 -0800 Subject: [PATCH] Import from setuptools.command.bdist_wheel which now contains functions from wheel.bdist_wheel --- setup_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup_ext.py b/setup_ext.py index 7ca353d..39d27ed 100644 --- a/setup_ext.py +++ b/setup_ext.py @@ -7,7 +7,7 @@ from distutils.dir_util import mkpath from setuptools import setup, find_packages, Extension from setuptools.command.build_ext import build_ext -from wheel.bdist_wheel import get_platform, bdist_wheel +from setuptools.command.bdist_wheel import get_platform, bdist_wheel def platform_ext(plat):