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 29dda9f commit 4d57c82Copy full SHA for 4d57c82
.github/actions/build_pandas/action.yml
@@ -30,5 +30,6 @@ runs:
30
else
31
EDITABLE=""
32
fi
33
- pip install $EDITABLE . --no-build-isolation -v --no-deps -Csetup-args="-Werror" -Csetup-args="-Wno-error=unused-parameter"
+ pip wheel $EDITABLE --no-build-isolation -v --no-deps --config-settings=setup-args="-Werror" --config-settings=setup-args="-Wno-error=unused-parameter" --wheel-dir=/tmp/wheelhouse .
34
+ pip install --no-index --find-links=/tmp/wheelhouse pandas
35
shell: bash -el {0}
0 commit comments