From 4837aee24baa25578df00ec12fc5cb853f04e591 Mon Sep 17 00:00:00 2001 From: regro-cf-autotick-bot <36490558+regro-cf-autotick-bot@users.noreply.github.com> Date: Fri, 11 Oct 2024 18:43:08 +0000 Subject: [PATCH 1/2] updated v2.1.3 --- recipe/meta.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index b2ded6f..ac346cf 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,5 +1,6 @@ {% set jupyterlab_version = ">=4.0.5,<4.2" %} -{% set version = "2.1.2" %} +{% set jupyterlab_version = ">=4.0.5,<4.2" %} +{% set version = "2.1.3" %} {% set jupyterlab_version = ">=4.0.5,<4.2" %} package: @@ -8,7 +9,7 @@ package: source: url: https://pypi.io/packages/source/j/jupyter-collaboration/jupyter_collaboration-{{ version }}.tar.gz - sha256: b8b6cd633b336922e753855c683af928171137e5e6fc1e3bd6cf96f6a2626ec9 + sha256: 3a35fb0bbf9e45eae0810c0a11ca85d429941f9c06b45f196afb6ebd36133539 build: noarch: python From 2230b876d9cb7ccc1ef7d17689604fe8398ae6d1 Mon Sep 17 00:00:00 2001 From: regro-cf-autotick-bot <36490558+regro-cf-autotick-bot@users.noreply.github.com> Date: Fri, 11 Oct 2024 18:43:42 +0000 Subject: [PATCH 2/2] MNT: Re-rendered with conda-build 24.9.0, conda-smithy 3.42.1, and conda-forge-pinning 2024.10.11.17.54.51 --- .scripts/build_steps.sh | 2 ++ README.md | 2 +- azure-pipelines.yml | 29 +++++++++++++++++++++++++++-- build-locally.py | 9 ++++++--- 4 files changed, 36 insertions(+), 6 deletions(-) diff --git a/.scripts/build_steps.sh b/.scripts/build_steps.sh index 6c805a9..af0b9ac 100755 --- a/.scripts/build_steps.sh +++ b/.scripts/build_steps.sh @@ -43,6 +43,8 @@ setup_conda_rc "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}" source run_conda_forge_build_setup + + # make the build number clobber make_build_number "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}" diff --git a/README.md b/README.md index f9f57f7..dfea9da 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,7 @@ In order to produce a uniquely identifiable distribution: Feedstock Maintainers ===================== -* [@conda-forge/jupyterlab](https://github.com/conda-forge/jupyterlab/) +* [@conda-forge/jupyterlab](https://github.com/orgs/conda-forge/teams/jupyterlab/) * [@davidbrochart](https://github.com/davidbrochart/) * [@fcollonval](https://github.com/fcollonval/) * [@hbcarlos](https://github.com/hbcarlos/) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index ad85a2c..95d88f6 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: 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 diff --git a/build-locally.py b/build-locally.py index e0d408d..6788aea 100755 --- a/build-locally.py +++ b/build-locally.py @@ -1,13 +1,16 @@ -#!/usr/bin/env python3 +#!/bin/sh +"""exec" "python3" "$0" "$@" #""" # fmt: off # fmt: on # # This file has been generated by conda-smithy in order to build the recipe # locally. # -import os +# The line above this comment is a bash / sh / zsh guard +# to stop people from running it with the wrong interpreter import glob +import os +import platform import subprocess from argparse import ArgumentParser -import platform def setup_environment(ns):