From cb59b874dca0f2118c785dc14b055746540f6716 Mon Sep 17 00:00:00 2001 From: 113xiaoji <31875988+113xiaoji@users.noreply.github.com> Date: Sat, 22 Aug 2026 23:09:00 +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 f1226b3cf..91f55c46f 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 269b12cd68ccfd2f4028ef3b7683c24369efc84f Mon Sep 17 00:00:00 2001 From: 113xiaoji <31875988+113xiaoji@users.noreply.github.com> Date: Sat, 22 Aug 2026 23:09:26 +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 69296440c..e6bd58bb2 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' %}