Skip to content
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