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 d5f86f9 commit fdf9f93Copy full SHA for fdf9f93
.github/actions/build_pandas/action.yml
@@ -27,15 +27,11 @@ runs:
27
28
- name: Build Pandas
29
run: |
30
- SETUP_ARGS=""
31
- if [[ ${{ inputs.werror }} == "true" ]]; then
32
- SETUP_ARGS="--werror"
33
- fi
34
if [[ ${{ inputs.editable }} == "true" ]]; then
35
pip install -e . --no-build-isolation -v --no-deps \
36
- -Csetup-args=$SETUP_ARGS
+ ${{ inputs.werror == 'true' && '-Csetup-args="--werror"' || '' }}
37
else
38
pip install . --no-build-isolation -v --no-deps \
39
40
fi
41
shell: bash -el {0}
0 commit comments