From dd51870dc672b856d4a409721142849b07544b70 Mon Sep 17 00:00:00 2001 From: nidichaogequ Date: Sat, 7 Mar 2026 22:46:46 +0800 Subject: [PATCH 1/4] updated v0.2.13 --- recipe/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index cb2bf1f..169adb1 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "gdptools" %} -{% set version = "0.2.12" %} +{% set version = "0.2.13" %} package: name: {{ name|lower }} @@ -7,7 +7,7 @@ package: source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/gdptools-{{ version }}.tar.gz - sha256: 7addcbbb5762c42606401f51402165a6c88cbe64fe84902c5ca4b2e594a0c0a0 + sha256: 77f49b44d174a4c174b6e0dabce3d7c20e7e9f12610d05183ff59b9ca20c0966 build: entry_points: From c2b9f9d81564e4faf4d422d62bcbee1946bff464 Mon Sep 17 00:00:00 2001 From: nidichaogequ Date: Sun, 22 Mar 2026 09:02:46 +0800 Subject: [PATCH 2/4] MNT: Re-rendered with conda-build 24.9.0, conda-smithy 3.43.2, and conda-forge-pinning 2024.11.04.16.29.58 --- .scripts/build_steps.sh | 14 +++++++------- azure-pipelines.yml | 29 +++++++++++++++++++++++++++-- 2 files changed, 34 insertions(+), 9 deletions(-) diff --git a/.scripts/build_steps.sh b/.scripts/build_steps.sh index af0b9ac..f8051ab 100755 --- a/.scripts/build_steps.sh +++ b/.scripts/build_steps.sh @@ -31,13 +31,13 @@ pkgs_dirs: solver: libmamba CONDARC +mv /opt/conda/conda-meta/history /opt/conda/conda-meta/history.$(date +%Y-%m-%d-%H-%M-%S) +echo > /opt/conda/conda-meta/history +micromamba install --root-prefix ~/.conda --prefix /opt/conda \ + --yes --override-channels --channel conda-forge --strict-channel-priority \ + pip python=3.12 conda-build conda-forge-ci-setup=4 "conda-build>=24.1" export CONDA_LIBMAMBA_SOLVER_NO_CHANNELS_FROM_INSTALLED=1 -mamba install --update-specs --yes --quiet --channel conda-forge --strict-channel-priority \ - 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 \ - pip mamba conda-build conda-forge-ci-setup=4 "conda-build>=24.1" - # set up the condarc setup_conda_rc "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}" @@ -73,8 +73,8 @@ else --extra-meta flow_run_id="${flow_run_id:-}" remote_url="${remote_url:-}" sha="${sha:-}" ( startgroup "Inspecting artifacts" ) 2> /dev/null - # inspect_artifacts was only added in conda-forge-ci-setup 4.6.0 - command -v inspect_artifacts >/dev/null 2>&1 && inspect_artifacts || echo "inspect_artifacts needs conda-forge-ci-setup >=4.6.0" + # inspect_artifacts was only added in conda-forge-ci-setup 4.9.4 + command -v inspect_artifacts >/dev/null 2>&1 && inspect_artifacts --recipe-dir "${RECIPE_ROOT}" -m "${CONFIG_FILE}" || echo "inspect_artifacts needs conda-forge-ci-setup >=4.9.4" ( endgroup "Inspecting artifacts" ) 2> /dev/null ( startgroup "Validating outputs" ) 2> /dev/null diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ad85a2c..d309e84 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -2,5 +2,30 @@ # update the conda-forge.yml and/or the recipe/meta.yaml. # -*- mode: yaml -*- -jobs: - - template: ./.azure-pipelines/azure-pipelines-linux.yml \ No newline at end of file +stages: +- stage: Check + jobs: + - job: Skip + pool: + vmImage: 'ubuntu-22.04' + variables: + DECODE_PERCENTS: 'false' + RET: 'true' + steps: + - checkout: self + fetchDepth: '2' + - bash: | + git_log=`git log --max-count=1 --skip=1 --pretty=format:"%B" | tr "\n" " "` + echo "##vso[task.setvariable variable=log]$git_log" + displayName: Obtain commit message + - bash: echo "##vso[task.setvariable variable=RET]false" + condition: and(eq(variables['Build.Reason'], 'PullRequest'), or(contains(variables.log, '[skip azp]'), contains(variables.log, '[azp skip]'), contains(variables.log, '[skip ci]'), contains(variables.log, '[ci skip]'))) + displayName: Skip build? + - bash: echo "##vso[task.setvariable variable=start_main;isOutput=true]$RET" + name: result + displayName: Export result +- stage: Build + condition: and(succeeded(), eq(dependencies.Check.outputs['Skip.result.start_main'], 'true')) + dependsOn: Check + jobs: + - template: ./.azure-pipelines/azure-pipelines-linux.yml \ No newline at end of file From 84f9cd747c3921e275d56f569dd460a86c1a4194 Mon Sep 17 00:00:00 2001 From: nidichaogequ Date: Wed, 25 Mar 2026 18:54:46 +0800 Subject: [PATCH 3/4] Update meta.yaml --- recipe/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 169adb1..de73bc5 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -18,7 +18,7 @@ build: requirements: host: - - python >=3.9,<=3.12 + - python >=3.9 - pip - poetry-core >=1.0.0 run: @@ -32,7 +32,7 @@ requirements: - tqdm >=4.66.2,<5.0.0 - statsmodels >=0.14.0,<0.15.0 - dask-core >=2024.7.1,<2025.0.0 - - python >=3.9,<=3.12 + - python >=3.9 - fastparquet >=2024.2.0 - pyarrow <17.0.0 - dask-geopandas 0.4.1 From 5db48d3f9c75ed0b1b0e91fe2a51d03d1fe58268 Mon Sep 17 00:00:00 2001 From: nidichaogequ Date: Tue, 7 Apr 2026 14:42:06 +0800 Subject: [PATCH 4/4] Looks like this limitation is still there. --- recipe/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index de73bc5..169adb1 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -18,7 +18,7 @@ build: requirements: host: - - python >=3.9 + - python >=3.9,<=3.12 - pip - poetry-core >=1.0.0 run: @@ -32,7 +32,7 @@ requirements: - tqdm >=4.66.2,<5.0.0 - statsmodels >=0.14.0,<0.15.0 - dask-core >=2024.7.1,<2025.0.0 - - python >=3.9 + - python >=3.9,<=3.12 - fastparquet >=2024.2.0 - pyarrow <17.0.0 - dask-geopandas 0.4.1