Skip to content

Commit e628136

Browse files
authored
Fix build_wheel for latest version of setuptools (#2184)
* pin setuptool max version * Revert "pin setuptool max version" This reverts commit 0de4ce2. * fix buil_wheel for new version of setuptools
1 parent 80b4453 commit e628136

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.ci/build_wheel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
# Create the temporary build-opts.cfg
4646
build_opts_path = Path(tmpdirname) / "build-opts.cfg"
4747

48-
build_opts_path.write_text(f"[bdist_wheel]\nplat-name={requested_platform}", encoding="utf-8")
48+
build_opts_path.write_text(f"[bdist_wheel]\nplat_name={requested_platform}", encoding="utf-8")
4949
os.environ["DIST_EXTRA_CONFIG"] = str(build_opts_path)
5050

5151
# Move the binaries

0 commit comments

Comments
 (0)