Skip to content

Commit 5f72fb0

Browse files
authored
Use bdist_wheel from setuptools (awslabs#671)
1 parent 6587c26 commit 5f72fb0

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[build-system]
22
requires = [
33
"setuptools>=75.3.1",
4-
"wheel>=0.45.1", # used by our setup.py
54
]
65
build-backend = "setuptools.build_meta"
76

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import subprocess
1212
import sys
1313
import sysconfig
14-
from wheel.bdist_wheel import bdist_wheel
14+
from setuptools.command.bdist_wheel import bdist_wheel
1515

1616
if sys.platform == 'win32':
1717
# distutils is deprecated in Python 3.10 and removed in 3.12. However, it still works because Python defines a compatibility interface as long as setuptools is installed.

0 commit comments

Comments
 (0)