MNT: Re-rendered with conda-build 24.3.0, conda-smithy 3.34.1, and conda-forge-pinning 2024.04.03.17.55.34

This commit is contained in:
nidichaogequ
2025-10-24 14:16:46 +08:00
parent a473929e3d
commit 2ebddaaf7c
4 changed files with 14 additions and 5 deletions
+1
View File
@@ -13,6 +13,7 @@ jobs:
UPLOAD_PACKAGES: 'True' UPLOAD_PACKAGES: 'True'
DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64 DOCKER_IMAGE: quay.io/condaforge/linux-anvil-cos7-x86_64
timeoutInMinutes: 360 timeoutInMinutes: 360
variables: {}
steps: steps:
# configure qemu binfmt-misc running. This allows us to run docker containers # configure qemu binfmt-misc running. This allows us to run docker containers
+7
View File
@@ -1,3 +1,7 @@
c_stdlib:
- sysroot
c_stdlib_version:
- '2.12'
cdt_name: cdt_name:
- cos6 - cos6
channel_sources: channel_sources:
@@ -6,3 +10,6 @@ channel_targets:
- conda-forge main - conda-forge main
docker_image: docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64 - quay.io/condaforge/linux-anvil-cos7-x86_64
zip_keys:
- - c_stdlib_version
- cdt_name
+3 -3
View File
@@ -34,9 +34,9 @@ CONDARC
export CONDA_LIBMAMBA_SOLVER_NO_CHANNELS_FROM_INSTALLED=1 export CONDA_LIBMAMBA_SOLVER_NO_CHANNELS_FROM_INSTALLED=1
mamba install --update-specs --yes --quiet --channel conda-forge --strict-channel-priority \ mamba install --update-specs --yes --quiet --channel conda-forge --strict-channel-priority \
pip mamba conda-build boa conda-forge-ci-setup=4 pip mamba conda-build conda-forge-ci-setup=4 "conda-build>=24.1"
mamba update --update-specs --yes --quiet --channel conda-forge --strict-channel-priority \ mamba update --update-specs --yes --quiet --channel conda-forge --strict-channel-priority \
pip mamba conda-build boa conda-forge-ci-setup=4 pip mamba conda-build conda-forge-ci-setup=4 "conda-build>=24.1"
# set up the condarc # set up the condarc
setup_conda_rc "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}" setup_conda_rc "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}"
@@ -65,7 +65,7 @@ if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then
# Drop into an interactive shell # Drop into an interactive shell
/bin/bash /bin/bash
else else
conda mambabuild "${RECIPE_ROOT}" -m "${CI_SUPPORT}/${CONFIG}.yaml" \ conda-build "${RECIPE_ROOT}" -m "${CI_SUPPORT}/${CONFIG}.yaml" \
--suppress-variables ${EXTRA_CB_OPTIONS:-} \ --suppress-variables ${EXTRA_CB_OPTIONS:-} \
--clobber-file "${CI_SUPPORT}/clobber_${CONFIG}.yaml" \ --clobber-file "${CI_SUPPORT}/clobber_${CONFIG}.yaml" \
--extra-meta flow_run_id="${flow_run_id:-}" remote_url="${remote_url:-}" sha="${sha:-}" --extra-meta flow_run_id="${flow_run_id:-}" remote_url="${remote_url:-}" sha="${sha:-}"
+3 -2
View File
@@ -64,8 +64,9 @@ def verify_config(ns):
elif ns.config.startswith("osx"): elif ns.config.startswith("osx"):
if "OSX_SDK_DIR" not in os.environ: if "OSX_SDK_DIR" not in os.environ:
raise RuntimeError( raise RuntimeError(
"Need OSX_SDK_DIR env variable set. Run 'export OSX_SDK_DIR=SDKs' " "Need OSX_SDK_DIR env variable set. Run 'export OSX_SDK_DIR=$PWD/SDKs' "
"to download the SDK automatically to 'SDKs/MacOSX<ver>.sdk'. " "to download the SDK automatically to '$PWD/SDKs/MacOSX<ver>.sdk'. "
"Note: OSX_SDK_DIR must be set to an absolute path. "
"Setting this variable implies agreement to the licensing terms of the SDK by Apple." "Setting this variable implies agreement to the licensing terms of the SDK by Apple."
) )