Skip to content

Commit

Permalink
Use python-build in test.yml workflow
Browse files Browse the repository at this point in the history
Replace `build` for `python-build` in the `test.yml` workflow before
installing the required packages.
  • Loading branch information
santisoler committed Sep 4, 2024
1 parent 5b45a59 commit c636087
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,14 @@ jobs:
echo "Collected dependencies:"
cat requirements-full.txt
- name: Rename conda-forge packages
run: |
echo "Rename conda-forge packages in requirements-full.txt"
# Replace "build" for "python-build"
sed -s --in-place 's/^build$/python-build/' requirements-full.txt
echo "Renamed dependencies:"
cat requirements-full.txt
- name: Install requirements
run: conda install --quiet --file requirements-full.txt python=$PYTHON

Expand Down

0 comments on commit c636087

Please sign in to comment.