From ad6563fb272ad4796247bbda04691faeae0ae3b5 Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <121827174+conda-forge-webservices[bot]@users.noreply.github.com> Date: Fri, 29 May 2026 15:20:45 +0000 Subject: [PATCH 1/2] dummy commit for rerendering --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 1078ae1..dec4d09 100644 --- a/README.md +++ b/README.md @@ -164,3 +164,6 @@ Feedstock Maintainers * [@takluyver](https://github.com/takluyver/) * [@trallard](https://github.com/trallard/) + + + From da3c31d490c6ecde3bf251f691a9a36e58648745 Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Fri, 29 May 2026 15:22:45 +0000 Subject: [PATCH 2/2] ENH: updated version to 9.14.0 & Re-rendered with conda-smithy 3.62.0 and conda-forge-pinning 2026.05.29.11.30.2 --- .azure-pipelines/azure-pipelines-win.yml | 8 ++++---- .github/workflows/conda-build.yml | 19 ++++++++++++++----- README.md | 10 ++++------ pixi.toml | 4 ++-- recipe/recipe.yaml | 4 ++-- 5 files changed, 26 insertions(+), 19 deletions(-) diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index 80d483d..cf75adb 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -11,11 +11,11 @@ jobs: win_64_: CONFIG: win_64_ UPLOAD_PACKAGES: 'True' + build_workspace_dir: D:\\bld\\ store_build_artifacts: false + tools_install_dir: D:\Miniforge timeoutInMinutes: 360 variables: - CONDA_BLD_PATH: D:\\bld\\ - MINIFORGE_HOME: D:\Miniforge UPLOAD_TEMP: D:\\tmp steps: @@ -24,8 +24,8 @@ jobs: call ".scripts\run_win_build.bat" displayName: Run Windows build env: - MINIFORGE_HOME: $(MINIFORGE_HOME) - CONDA_BLD_PATH: $(CONDA_BLD_PATH) + MINIFORGE_HOME: $(tools_install_dir) + CONDA_BLD_PATH: $(build_workspace_dir) PYTHONUNBUFFERED: 1 CONFIG: $(CONFIG) CI: azure diff --git a/.github/workflows/conda-build.yml b/.github/workflows/conda-build.yml index 4b12dcf..fe4baaf 100644 --- a/.github/workflows/conda-build.yml +++ b/.github/workflows/conda-build.yml @@ -28,6 +28,9 @@ jobs: os: ubuntu runs_on: ['ubuntu-latest'] DOCKER_IMAGE: quay.io/condaforge/linux-anvil-x86_64:alma9 + tools_install_dir: ~/miniforge3 + build_workspace_dir: build_artifacts + docker_run_args: steps: - name: Checkout code @@ -37,11 +40,13 @@ jobs: id: build-linux if: matrix.os == 'ubuntu' env: + MINIFORGE_HOME: ${{ matrix.tools_install_dir }} + CONDA_BLD_PATH: ${{ matrix.build_workspace_dir }} CONFIG: ${{ matrix.CONFIG }} UPLOAD_PACKAGES: ${{ matrix.UPLOAD_PACKAGES }} DOCKER_IMAGE: ${{ matrix.DOCKER_IMAGE }} CI: github_actions - CONDA_FORGE_DOCKER_RUN_ARGS: "${{ matrix.CONDA_FORGE_DOCKER_RUN_ARGS }}" + CONDA_FORGE_DOCKER_RUN_ARGS: "${{ matrix.docker_run_args }}" BINSTAR_TOKEN: ${{ secrets.BINSTAR_TOKEN }} FEEDSTOCK_TOKEN: ${{ secrets.FEEDSTOCK_TOKEN }} STAGING_BINSTAR_TOKEN: ${{ secrets.STAGING_BINSTAR_TOKEN }} @@ -61,6 +66,8 @@ jobs: else export IS_PR_BUILD="False" fi + export MINIFORGE_HOME="${MINIFORGE_HOME/#~/${HOME}}" + export CONDA_BLD_PATH="${CONDA_BLD_PATH/#~/${HOME}}" echo "::endgroup::" ./.scripts/run_docker_build.sh @@ -68,6 +75,8 @@ jobs: id: build-macos if: matrix.os == 'macos' env: + MINIFORGE_HOME: ${{ matrix.tools_install_dir }} + CONDA_BLD_PATH: ${{ matrix.build_workspace_dir }} CONFIG: ${{ matrix.CONFIG }} UPLOAD_PACKAGES: ${{ matrix.UPLOAD_PACKAGES }} CI: github_actions @@ -86,6 +95,8 @@ jobs: else export IS_PR_BUILD="False" fi + export MINIFORGE_HOME="${MINIFORGE_HOME/#~/${HOME}}" + export CONDA_BLD_PATH="${CONDA_BLD_PATH/#~/${HOME}}" ./.scripts/run_osx_build.sh - name: Build on windows @@ -98,10 +109,8 @@ jobs: set "sha=%GITHUB_SHA%" call ".scripts\run_win_build.bat" env: - # default value; make it explicit, as it needs to match with artefact - # generation below. Not configurable for now, can be revisited later - CONDA_BLD_PATH: C:\bld - MINIFORGE_HOME: ${{ contains(runner.arch, 'ARM') && 'C' || 'D' }}:\Miniforge + MINIFORGE_HOME: ${{ matrix.tools_install_dir }} + CONDA_BLD_PATH: ${{ matrix.build_workspace_dir }} PYTHONUNBUFFERED: 1 CONFIG: ${{ matrix.CONFIG }} CI: github_actions diff --git a/README.md b/README.md index dec4d09..ee51d65 100644 --- a/README.md +++ b/README.md @@ -21,10 +21,11 @@ Current build status ==================== - +
All platforms:
+ @@ -164,6 +165,3 @@ Feedstock Maintainers * [@takluyver](https://github.com/takluyver/) * [@trallard](https://github.com/trallard/) - - - diff --git a/pixi.toml b/pixi.toml index 5cbd1d7..d00d312 100644 --- a/pixi.toml +++ b/pixi.toml @@ -5,7 +5,7 @@ [workspace] name = "ipython-feedstock" -version = "3.61.2" # conda-smithy version used to generate this file +version = "3.62.0" # conda-smithy version used to generate this file description = "Pixi configuration for conda-forge/ipython-feedstock" authors = ["@conda-forge/ipython"] channels = ["conda-forge"] @@ -13,7 +13,7 @@ platforms = ["linux-64", "osx-64", "win-64"] requires-pixi = ">=0.59.0" [dependencies] -conda-build = ">=24.1" +conda-build = ">=26.3" conda-forge-ci-setup = "4.*" rattler-build = "*" diff --git a/recipe/recipe.yaml b/recipe/recipe.yaml index 77f96eb..2c4d428 100644 --- a/recipe/recipe.yaml +++ b/recipe/recipe.yaml @@ -2,7 +2,7 @@ schema_version: 1 context: - version: "9.13.0" + version: "9.14.0" python_check_max: "3.14" pygments_modes: ipython ipython3 ipythonconsole ipython3console @@ -12,7 +12,7 @@ recipe: source: url: https://pypi.org/packages/source/i/ipython/ipython-${{ version }}.tar.gz - sha256: 7e834b6afc99f020e3f05966ced34792f40267d64cb1ea9043886dab0dde5967 + sha256: 6f27ff0f1d9ea050e0551f71568bc4b34d8aba579e8f111c5b4175f44ac6b4aa build: number: 0
All platforms: - - + +