We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f66f7e3 commit 89dfbb0Copy full SHA for 89dfbb0
.github/actions/build_pandas/action.yml
@@ -18,7 +18,9 @@ runs:
18
run: |
19
which python
20
which pip
21
- time python setup.py build_ext -v -j 3
+ # 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
24
pip install -v -e . --no-build-isolation --no-use-pep517 --no-index
25
shell: bash -el {0}
26
0 commit comments