Skip to content

Commit 3fb408b

Browse files
authored
Merge pull request #2020 from IntelPython/permit-conda-build-25-1-2
[MAINT] Unpin conda-build in Conda package workflow
2 parents 0d0ff97 + c3fccb2 commit 3fb408b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Diff for: .github/workflows/conda-package.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ jobs:
4747
- name: Add conda to system path
4848
run: echo $CONDA/bin >> $GITHUB_PATH
4949
- name: Install conda-build
50-
# FIXME: unpin when conda-build fixes issues with lief
51-
run: conda install conda-build"<25.1.2" -c conda-forge --override-channels
50+
run: conda install conda-build -c conda-forge --override-channels
5251
- name: Store conda paths as envs
5352
shell: bash -l {0}
5453
run: |
@@ -97,10 +96,9 @@ jobs:
9796
python-version: ${{ matrix.python }}
9897

9998
- name: Install conda build
100-
# FIXME: unpin when conda-build fixes issues with lief
10199
run: |
102100
conda activate
103-
conda install -y conda-build"<25.1.2"
101+
conda install -y conda-build
104102
conda list -n base
105103
106104
- name: Cache conda packages

0 commit comments

Comments
 (0)