Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: don't import deprecated "wheel" (just to do nothing with it) #823

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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'"
]
Expand Down
7 changes: 0 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -325,8 +320,6 @@ def run(self):
'build_ext': build_ext,
'test': test,
}
if bdist_wheel:
cmdclass['bdist_wheel'] = bdist_wheel


if __name__ == '__main__':
Expand Down