Skip to content

Commit 0466033

Browse files
committed
Add setuptools explicitly to github actions
1 parent 5b948c2 commit 0466033

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/publish_to_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
run: |
1818
conda create -y -n dedalus
1919
conda activate dedalus
20-
conda install -y -c conda-forge dedalus c-compiler cython "h5py=*=mpi*"
20+
conda install -y -c conda-forge dedalus c-compiler cython setuptools wheel "h5py=*=mpi*"
2121
conda uninstall -y --force dedalus
2222
- name: Checkout repository
2323
uses: actions/checkout@v2

.github/workflows/publish_to_test_pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
run: |
1818
conda create -y -n dedalus
1919
conda activate dedalus
20-
conda install -y -c conda-forge dedalus c-compiler cython "h5py=*=mpi*"
20+
conda install -y -c conda-forge dedalus c-compiler cython setuptools wheel "h5py=*=mpi*"
2121
conda uninstall -y --force dedalus
2222
- name: Checkout repository
2323
uses: actions/checkout@v2

.github/workflows/test_dedalus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
conda activate dedalus
3333
conda env config vars set OMP_NUM_THREADS=1
3434
conda env config vars set NUMEXPR_MAX_THREADS=1
35-
conda install -y -c conda-forge dedalus c-compiler cython "h5py=*=mpi*"
35+
conda install -y -c conda-forge dedalus c-compiler cython setuptools wheel "h5py=*=mpi*"
3636
conda uninstall -y --force dedalus
3737
- name: Checkout repository
3838
uses: actions/checkout@v2

0 commit comments

Comments
 (0)