Skip to content

Commit

Permalink
Add setuptools explicitly to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kburns committed Dec 9, 2024
1 parent 5b948c2 commit 0466033
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: |
conda create -y -n dedalus
conda activate dedalus
conda install -y -c conda-forge dedalus c-compiler cython "h5py=*=mpi*"
conda install -y -c conda-forge dedalus c-compiler cython setuptools wheel "h5py=*=mpi*"
conda uninstall -y --force dedalus
- name: Checkout repository
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_to_test_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: |
conda create -y -n dedalus
conda activate dedalus
conda install -y -c conda-forge dedalus c-compiler cython "h5py=*=mpi*"
conda install -y -c conda-forge dedalus c-compiler cython setuptools wheel "h5py=*=mpi*"
conda uninstall -y --force dedalus
- name: Checkout repository
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_dedalus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
conda activate dedalus
conda env config vars set OMP_NUM_THREADS=1
conda env config vars set NUMEXPR_MAX_THREADS=1
conda install -y -c conda-forge dedalus c-compiler cython "h5py=*=mpi*"
conda install -y -c conda-forge dedalus c-compiler cython setuptools wheel "h5py=*=mpi*"
conda uninstall -y --force dedalus
- name: Checkout repository
uses: actions/checkout@v2
Expand Down

0 comments on commit 0466033

Please sign in to comment.