From c3fccb26ba0a222e27b523ec09547504b875bf76 Mon Sep 17 00:00:00 2001 From: Nikita Grigorian Date: Fri, 28 Feb 2025 12:08:10 -0800 Subject: [PATCH] Unpin conda-build in conda-package workflows --- .github/workflows/conda-package.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index 04d7e3d6b2..65175eca16 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -47,8 +47,7 @@ jobs: - name: Add conda to system path run: echo $CONDA/bin >> $GITHUB_PATH - name: Install conda-build - # FIXME: unpin when conda-build fixes issues with lief - run: conda install conda-build"<25.1.2" -c conda-forge --override-channels + run: conda install conda-build -c conda-forge --override-channels - name: Store conda paths as envs shell: bash -l {0} run: | @@ -97,10 +96,9 @@ jobs: python-version: ${{ matrix.python }} - name: Install conda build - # FIXME: unpin when conda-build fixes issues with lief run: | conda activate - conda install -y conda-build"<25.1.2" + conda install -y conda-build conda list -n base - name: Cache conda packages