Skip to content

Commit 282ad1b

Browse files
committed
No parallel compile on Windows
1 parent 89dfbb0 commit 282ad1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/build_pandas/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
which python
2020
which pip
2121
# Cannot use parallel compilation on Windows, see https://github.com/pandas-dev/pandas/issues/30873
22-
j=${{ runner.os == 'Windows' ? 1 : 3 }}
22+
j=${{ runner.os == 'Windows' && 1 || 3 }}
2323
time python setup.py build_ext -v -j $j
2424
pip install -v -e . --no-build-isolation --no-use-pep517 --no-index
2525
shell: bash -el {0}

0 commit comments

Comments
 (0)