From ac4ffd91e7ced815737d6f893107a0cb2f159cce Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 28 Jan 2026 15:23:46 +0500 Subject: [PATCH] Bonsai Makefile - drop wheel renaming workaround #5743 --- src/bonsai/Makefile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/bonsai/Makefile b/src/bonsai/Makefile index 3a1fbe564b..ca33bd4525 100644 --- a/src/bonsai/Makefile +++ b/src/bonsai/Makefile @@ -306,12 +306,6 @@ endif fi mv build/wheels/*.whl build/bonsai/wheels/ - # Temporary workaround for Blender not handling non-3.11 wheels #5743. - # Use '-n' as on macos x86-64 doesn't have a binary wheel and it autoincludes 'cp311'. - prev_whl_name=$$(find build/bonsai/wheels/tzfpy-*.whl); \ - whl_name=$$(echo $$prev_whl_name | sed "s/-cp39-/-cp$(PYNUMBER)-/"); \ - mv --update=none "$$prev_whl_name" "$$whl_name"; - ifneq ($(PLATFORM), linux) # Safeguard: in case one of `pip download` will break, # it will produce a linux wheel for non-linux build (our github action machine is using linux).