We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4318a58 commit 726cd01Copy full SHA for 726cd01
.github/actions/build_pandas/action.yml
@@ -17,4 +17,6 @@ runs:
17
shell: bash -el {0}
18
env:
19
# Cannot use parallel compilation on Windows, see https://github.com/pandas-dev/pandas/issues/30873
20
- N_JOBS: ${{ runner.os == 'Windows' && 1 || 2 }}
+ # GH 47305: Parallel build causes flaky ImportError: /home/runner/work/pandas/pandas/pandas/_libs/tslibs/timestamps.cpython-38-x86_64-linux-gnu.so: undefined symbol: pandas_datetime_to_datetimestruct
21
+ N_JOBS: 1
22
+ #N_JOBS: ${{ runner.os == 'Windows' && 1 || 2 }}
0 commit comments