From 29e1d1af2ec68ec97e80fdb1b69fe151dea95c8b Mon Sep 17 00:00:00 2001 From: Chad Retz Date: Tue, 7 Nov 2023 07:47:03 -0600 Subject: [PATCH] Fix pyd file name for Windows --- scripts/fix_wheel.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/scripts/fix_wheel.py b/scripts/fix_wheel.py index 0fec895b..bd3d2dc8 100644 --- a/scripts/fix_wheel.py +++ b/scripts/fix_wheel.py @@ -1,4 +1,5 @@ import os +import pathlib import shutil import subprocess from glob import glob @@ -50,6 +51,18 @@ if not found_wheel_tag: raise RuntimeError("Could not find WHEEL tag") + # On Windows due to setuptools-rust changing how the pyd file is named, we + # are renaming it back. + # https://github.com/PyO3/setuptools-rust/pull/352#discussion_r1293444464 + # explains our exact situation, but no clear remedy. + # TODO(cretz): Investigate as part of https://github.com/temporalio/sdk-python/issues/398 + pyd_files = glob("dist/temp/*/temporalio/bridge/*-win_amd64.pyd") + if pyd_files: + os.rename( + pyd_files[0], + pathlib.Path(pyd_files[0]).with_name("temporal_sdk_bridge.pyd"), + ) + # Write the WHEEL file with open(wheel_files[0], "w") as f: f.write("\n".join(wheel_lines))