We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73a05c1 commit 1eeb27bCopy full SHA for 1eeb27b
.github/workflows/release.yml
@@ -104,13 +104,15 @@ jobs:
104
path: ./dist
105
106
- name: Set Variables for Conda Build
107
+ # build conda package from wheel
108
+ # avoids conda build issues on github osx-x64 and win runners
109
if: matrix.conda
110
shell: bash
111
run: |
112
if [ $NOARCH == true ]; then
113
CONDA_BUILD_ARGS="--noarch"
114
else
- CONDA_BUILD_ARGS=""
115
+ CONDA_BUILD_ARGS="--from-wheel"
116
fi
117
echo "CONDA_BUILD_ARGS=$CONDA_BUILD_ARGS" >> $GITHUB_ENV
118
0 commit comments