From c8d23854a6d84e0680e14f3ac9e428f320e03ff2 Mon Sep 17 00:00:00 2001 From: Daniel Nordio <15243341+ttm56p@users.noreply.github.com> Date: Wed, 27 Nov 2024 11:42:23 +0200 Subject: [PATCH 1/2] cherry-pick(#2671): devops: fix build process producing wheels with incorrect RECORD --- setup.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index b4212cb9d..f3e9690f2 100644 --- a/setup.py +++ b/setup.py @@ -165,13 +165,12 @@ def _build_wheel( for whlfile in glob.glob(os.path.join(self.dist_dir, "*.whl")): os.makedirs("wheelhouse", exist_ok=True) if InWheel: - with InWheel( - in_wheel=whlfile, - out_wheel=os.path.join("wheelhouse", os.path.basename(whlfile)), - ): + wheelhouse_whl = os.path.join("wheelhouse", os.path.basename(whlfile)) + shutil.move(whlfile, wheelhouse_whl) + with InWheel(in_wheel=wheelhouse_whl, out_wheel=whlfile): print(f"Updating RECORD file of {whlfile}") print("Copying new wheels") - shutil.move("wheelhouse", self.dist_dir) + shutil.rmtree("wheelhouse") def _download_and_extract_local_driver( self, From 920bc4dc7005613feeb7d513eea5143e0bad1e92 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 10 Dec 2024 09:22:35 -0800 Subject: [PATCH 2/2] chore: roll Playwright to v1.49.1 (#2684) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f3e9690f2..f4c93dc3c 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ import zipfile from typing import Dict -driver_version = "1.49.0-beta-1732210972000" +driver_version = "1.49.1" base_wheel_bundles = [ {