From 703ff0eb96ffaec1d1e43bcdad0a605be36b5727 Mon Sep 17 00:00:00 2001
From: regro-cf-autotick-bot
<36490558+regro-cf-autotick-bot@users.noreply.github.com>
Date: Tue, 11 Aug 2026 00:43:53 +0000
Subject: [PATCH 1/2] updated v0.23.2
---
recipe/recipe.yaml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/recipe/recipe.yaml b/recipe/recipe.yaml
index 7a619d4..ca27515 100644
--- a/recipe/recipe.yaml
+++ b/recipe/recipe.yaml
@@ -1,5 +1,5 @@
context:
- version: "0.23.0"
+ version: "0.23.2"
build_number: 0
recipe:
@@ -8,7 +8,7 @@ recipe:
source:
url: https://github.com/rockdaboot/libpsl/releases/download/${{ version }}/libpsl-${{ version }}.tar.gz
- sha256: f39b9631b3d369a21259ea4654f8875c0ec6995ce9551c0eb5d423e4c011f911
+ sha256: f2ea0e59bffb36597a872f6ef89893ffa4c30196c87eff7aeb2c47e4e8c98133
build:
number: ${{ build_number }}
From 6c9529cd9504603c086e910caa7e2283a8151069 Mon Sep 17 00:00:00 2001
From: regro-cf-autotick-bot
<36490558+regro-cf-autotick-bot@users.noreply.github.com>
Date: Tue, 11 Aug 2026 00:44:12 +0000
Subject: [PATCH 2/2] MNT: Re-rendered with conda-smithy 2026.8.9 and
conda-forge-pinning 2026.08.10.11.23.0
---
.azure-pipelines/azure-pipelines-osx.yml | 0
.azure-pipelines/azure-pipelines-win.yml | 50 -------------------
.github/workflows/conda-build.yml | 31 ++++++++++--
.scripts/build_steps.sh | 2 +
.scripts/logging_utils.sh | 0
.scripts/run_osx_build.sh | 2 +
.scripts/run_win_build.bat | 4 +-
README.md | 61 +++++++++++++++++++-----
azure-pipelines.yml | 3 +-
9 files changed, 84 insertions(+), 69 deletions(-)
mode change 100755 => 100644 .azure-pipelines/azure-pipelines-osx.yml
delete mode 100755 .azure-pipelines/azure-pipelines-win.yml
mode change 100644 => 100755 .scripts/logging_utils.sh
diff --git a/.azure-pipelines/azure-pipelines-osx.yml b/.azure-pipelines/azure-pipelines-osx.yml
old mode 100755
new mode 100644
diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml
deleted file mode 100755
index 822de31..0000000
--- a/.azure-pipelines/azure-pipelines-win.yml
+++ /dev/null
@@ -1,50 +0,0 @@
-# This file was generated automatically from conda-smithy. To update this configuration,
-# update the conda-forge.yml and/or the recipe/meta.yaml.
-# -*- mode: yaml -*-
-
-jobs:
-- job: win
- pool:
- vmImage: windows-2022
- strategy:
- matrix:
- win_64_:
- CONFIG: win_64_
- UPLOAD_PACKAGES: 'True'
- build_workspace_dir: D:\\bld\\
- free_disk_space: skip
- pagefile_size: 0
- resize_partitions: false
- store_build_artifacts: false
- tools_install_dir: D:\Miniforge
- win_arm64_:
- CONFIG: win_arm64_
- UPLOAD_PACKAGES: 'True'
- build_workspace_dir: C:\\bld\\
- free_disk_space: skip
- pagefile_size: 0
- resize_partitions: false
- store_build_artifacts: false
- tools_install_dir: C:\Miniforge
- timeoutInMinutes: 360
- variables:
- UPLOAD_TEMP: D:\\tmp
-
- steps:
- - script: |
- call ".scripts\run_win_build.bat"
- displayName: Run Windows build
- env:
- CI: azure
- CONFIG: $(CONFIG)
- CONDA_BLD_PATH: $(build_workspace_dir)
- MINIFORGE_HOME: $(tools_install_dir)
- PYTHONUNBUFFERED: 1
- UPLOAD_PACKAGES: $(UPLOAD_PACKAGES)
- UPLOAD_TEMP: $(UPLOAD_TEMP)
- flow_run_id: azure_$(Build.BuildNumber).$(System.JobAttempt)
- remote_url: $(Build.Repository.Uri)
- sha: $(Build.SourceVersion)
- BINSTAR_TOKEN: $(BINSTAR_TOKEN)
- FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN)
- STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN)
diff --git a/.github/workflows/conda-build.yml b/.github/workflows/conda-build.yml
index ba6fe64..fef4abe 100644
--- a/.github/workflows/conda-build.yml
+++ b/.github/workflows/conda-build.yml
@@ -58,10 +58,34 @@ jobs:
resize_partitions: False
runs_on: ['ubuntu-latest']
tools_install_dir: ~/miniforge3
+ - CONFIG: win_64_
+ STORE_BUILD_ARTIFACTS: False
+ UPLOAD_PACKAGES: True
+ build_platform: win-64
+ build_workspace_dir: D:\\bld\\
+ docker_run_args:
+ free_disk_space: skip
+ os: windows
+ pagefile_size: 0
+ resize_partitions: False
+ runs_on: ['windows-2022']
+ tools_install_dir: D:\Miniforge
+ - CONFIG: win_arm64_
+ STORE_BUILD_ARTIFACTS: False
+ UPLOAD_PACKAGES: True
+ build_platform: win-64
+ build_workspace_dir: D:\\bld\\
+ docker_run_args:
+ free_disk_space: skip
+ os: windows
+ pagefile_size: 0
+ resize_partitions: False
+ runs_on: ['windows-2022']
+ tools_install_dir: D:\Miniforge
steps:
- name: Checkout code
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
+ uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Configure binfmt_misc
if: matrix.os == 'ubuntu'
shell: bash
@@ -90,7 +114,7 @@ jobs:
run: |
export CONDA_BLD_PATH="${CONDA_BLD_PATH/#~/${HOME}}"
export FEEDSTOCK_NAME="$(basename $GITHUB_REPOSITORY)"
- export GIT_BRANCH="$(basename $GITHUB_REF)"
+ export GIT_BRANCH="${GITHUB_REF_NAME}"
export MINIFORGE_HOME="${MINIFORGE_HOME/#~/${HOME}}"
export flow_run_id="github_$GITHUB_RUN_ID"
export remote_url="https://github.com/$GITHUB_REPOSITORY"
@@ -120,7 +144,7 @@ jobs:
run: |
export CONDA_BLD_PATH="${CONDA_BLD_PATH/#~/${HOME}}"
export FEEDSTOCK_NAME="$(basename $GITHUB_REPOSITORY)"
- export GIT_BRANCH="$(basename $GITHUB_REF)"
+ export GIT_BRANCH="${GITHUB_REF_NAME}"
export MINIFORGE_HOME="${MINIFORGE_HOME/#~/${HOME}}"
export flow_run_id="github_$GITHUB_RUN_ID"
export remote_url="https://github.com/$GITHUB_REPOSITORY"
@@ -142,6 +166,7 @@ jobs:
set "sha=%GITHUB_SHA%"
call ".scripts\run_win_build.bat"
env:
+ BUILD_PLATFORM: ${{ matrix.build_platform }}
CI: github_actions
CONDA_BLD_PATH: ${{ matrix.build_workspace_dir }}
CONFIG: ${{ matrix.CONFIG }}
diff --git a/.scripts/build_steps.sh b/.scripts/build_steps.sh
index a5a9998..56dc0fe 100755
--- a/.scripts/build_steps.sh
+++ b/.scripts/build_steps.sh
@@ -73,6 +73,7 @@ if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then
-m "${CI_SUPPORT}/${CONFIG}.yaml" \
${EXTRA_CB_OPTIONS:-} \
${BUILD_OUTPUT_ID:+--output-name "${BUILD_OUTPUT_ID}"} \
+ --build-platform "${BUILD_PLATFORM}" \
--target-platform "${HOST_PLATFORM}"
rattler-build debug shell
@@ -88,6 +89,7 @@ else
--recipe "${RECIPE_ROOT}" \
-m "${CI_SUPPORT}/${CONFIG}.yaml" \
${EXTRA_CB_OPTIONS:-} \
+ --build-platform "${BUILD_PLATFORM}" \
--target-platform "${HOST_PLATFORM}" \
--extra-meta flow_run_id="${flow_run_id:-}" \
--extra-meta remote_url="${remote_url:-}" \
diff --git a/.scripts/logging_utils.sh b/.scripts/logging_utils.sh
old mode 100644
new mode 100755
diff --git a/.scripts/run_osx_build.sh b/.scripts/run_osx_build.sh
index 18a7c7f..400a3a0 100755
--- a/.scripts/run_osx_build.sh
+++ b/.scripts/run_osx_build.sh
@@ -98,6 +98,7 @@ if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then
rattler-build debug setup \
--recipe ./recipe \
-m ./.ci_support/${CONFIG}.yaml \
+ --build-platform "${BUILD_PLATFORM}" \
--target-platform "${HOST_PLATFORM}" \
${BUILD_OUTPUT_ID:+--output-name "${BUILD_OUTPUT_ID}"} \
${EXTRA_CB_OPTIONS:-}
@@ -112,6 +113,7 @@ else
rattler-build build --recipe ./recipe \
-m ./.ci_support/${CONFIG}.yaml \
${EXTRA_CB_OPTIONS:-} \
+ --build-platform "${BUILD_PLATFORM}" \
--target-platform "${HOST_PLATFORM}" \
--extra-meta flow_run_id="$flow_run_id" \
--extra-meta remote_url="$remote_url" \
diff --git a/.scripts/run_win_build.bat b/.scripts/run_win_build.bat
index 8d64121..a3da73e 100755
--- a/.scripts/run_win_build.bat
+++ b/.scripts/run_win_build.bat
@@ -76,7 +76,7 @@ call :end_group
:: Build the recipe
echo Building recipe
-rattler-build.exe build --recipe "recipe" -m .ci_support\%CONFIG%.yaml %EXTRA_CB_OPTIONS% --target-platform %HOST_PLATFORM%
+rattler-build.exe build --recipe "recipe" -m .ci_support\%CONFIG%.yaml %EXTRA_CB_OPTIONS% --build-platform %BUILD_PLATFORM% --target-platform %HOST_PLATFORM%
if !errorlevel! neq 0 exit /b !errorlevel!
call :start_group "Inspecting artifacts"
@@ -87,7 +87,7 @@ call :end_group
:: Prepare some environment variables for the upload step
if /i "%CI%" == "github_actions" (
set "FEEDSTOCK_NAME=%GITHUB_REPOSITORY:*/=%"
- set "GIT_BRANCH=%GITHUB_REF:refs/heads/=%"
+ set "GIT_BRANCH=%GITHUB_REF_NAME%"
if /i "%GITHUB_EVENT_NAME%" == "pull_request" (
set "IS_PR_BUILD=True"
) else (
diff --git a/README.md b/README.md
index d5a05cf..dcfcf17 100644
--- a/README.md
+++ b/README.md
@@ -42,13 +42,6 @@ Current build status
-