Skip to content

Commit 618e46a

Browse files
authored
setup.py: import bdist_wheel from setuptools (#810)
1 parent 7d66aee commit 618e46a

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,6 +1,5 @@
11
[build-system]
22
requires = [
3-
"wheel",
43
# pin setuptools:
54
# https://github.com/airspeed-velocity/asv/pull/1426#issuecomment-2290658198
65
# Most likely cause:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from setuptools import find_packages, setup, Command, Extension
1717

1818
try:
19-
from wheel.bdist_wheel import bdist_wheel
19+
from setuptools.command.bdist_wheel import bdist_wheel
2020
except ImportError:
2121
bdist_wheel = None
2222

0 commit comments

Comments
 (0)