Skip to content

Commit 89dfbb0

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

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/build_pandas/action.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ runs:
1818
run: |
1919
which python
2020
which pip
21-
time python setup.py build_ext -v -j 3
21+
# Cannot use parallel compilation on Windows, see https://github.com/pandas-dev/pandas/issues/30873
22+
j=${{ runner.os == 'Windows' ? 1 : 3 }}
23+
time python setup.py build_ext -v -j $j
2224
pip install -v -e . --no-build-isolation --no-use-pep517 --no-index
2325
shell: bash -el {0}
2426

0 commit comments

Comments
 (0)