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 89dfbb0 commit 282ad1bCopy full SHA for 282ad1b
.github/actions/build_pandas/action.yml
@@ -19,7 +19,7 @@ runs:
19
which python
20
which pip
21
# Cannot use parallel compilation on Windows, see https://github.com/pandas-dev/pandas/issues/30873
22
- j=${{ runner.os == 'Windows' ? 1 : 3 }}
+ j=${{ runner.os == 'Windows' && 1 || 3 }}
23
time python setup.py build_ext -v -j $j
24
pip install -v -e . --no-build-isolation --no-use-pep517 --no-index
25
shell: bash -el {0}
0 commit comments