From 2c19883aa8be455f4821d14545889182a2074e7e Mon Sep 17 00:00:00 2001 From: 113xiaoji <31875988+113xiaoji@users.noreply.github.com> Date: Sat, 22 Aug 2026 23:10:18 +0800 Subject: [PATCH 1/2] build: enable aarch64 optimizations --- recipe/build_base.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/recipe/build_base.sh b/recipe/build_base.sh index ba47f298e..cb23ebeb7 100644 --- a/recipe/build_base.sh +++ b/recipe/build_base.sh @@ -48,9 +48,6 @@ if [[ ${PY_INTERP_DEBUG} == yes ]]; then fi # Since these take very long to build in our emulated ci, disable for now -if [[ ${target_platform} == linux-aarch64 ]]; then - _OPTIMIZED=no -fi if [[ ${target_platform} == linux-ppc64le ]]; then _OPTIMIZED=no fi From 061d78a8781ba55af9e601d291df0d8195ee9e9c Mon Sep 17 00:00:00 2001 From: 113xiaoji <31875988+113xiaoji@users.noreply.github.com> Date: Sat, 22 Aug 2026 23:10:39 +0800 Subject: [PATCH 2/2] build: bump python build number --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index eb49e4a18..70d26bace 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -4,7 +4,7 @@ {% set ver2 = '.'.join(version.split('.')[0:2]) %} {% set ver2nd = ''.join(version.split('.')[0:2]) %} {% set ver3nd = ''.join(version.split('.')[0:3]) %} -{% set build_number = 0 %} +{% set build_number = 1 %} # this makes the linter happy {% set channel_targets = channel_targets or 'conda-forge main' %}