Skip to content

Commit 86ad806

Browse files
committed
Attempt to get wheels up
1 parent e9a96dd commit 86ad806

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/build-wheels.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ jobs:
101101
102102
- name: Install conda
103103
uses: conda-incubator/setup-miniconda@v3
104+
if: (runner.os != 'Windows') || ((runner.os == 'Windows') && (runner.arch != 'ARM64'))
104105
with:
105106
# for installation of anaconda-client, required for upload to
106107
# anaconda.org
@@ -114,13 +115,15 @@ jobs:
114115

115116
- name: Inspect conda and install anaconda-client
116117
shell: pwsh
118+
if: (runner.os != 'Windows') || ((runner.os == 'Windows') && (runner.arch != 'ARM64'))
117119
run: |
118120
conda info
119121
conda list
120122
conda install -y anaconda-client
121123
122124
- name: Install anaconda-client (Windows ARM64)
123125
shell: pwsh
126+
if: ((runner.os == 'Windows') && (runner.arch == 'ARM64'))
124127
run: |
125128
python -m pip install pip -U
126129
pip install --only-binary :all: anaconda-client

0 commit comments

Comments
 (0)