Skip to content

[MAINT] Pin conda-build to most recent working version #1973

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:
- name: Add conda to system path
run: echo $CONDA/bin >> $GITHUB_PATH
- name: Install conda-build
run: conda install conda-build -c conda-forge --override-channels
# FIXME: unpin when conda-build fixes issues with lief
run: conda install conda-build"<=24.11.2" -c conda-forge --override-channels
- name: Store conda paths as envs
shell: bash -l {0}
run: |
Expand Down Expand Up @@ -96,9 +97,10 @@ 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
conda install -y conda-build"<=24.11.2"
conda list -n base

- name: Cache conda packages
Expand Down
Loading