File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,8 @@ if pip list | grep -q ^pandas; then
55
55
fi
56
56
57
57
echo " Build extensions"
58
- python setup.py build_ext -q -j4
58
+ # GH 47305: Parallel build can causes flaky ImportError from pandas/_libs/tslibs
59
+ python setup.py build_ext -q -j1
59
60
60
61
echo " Install pandas"
61
62
python -m pip install --no-build-isolation --no-use-pep517 -e .
Original file line number Diff line number Diff line change 40
40
python -m pip install --no-deps -U pip wheel 'setuptools<60.0.0' && \
41
41
python -m pip install versioneer[toml] && \
42
42
python -m pip install cython numpy python-dateutil pytz pytest>=7.0.0 pytest-xdist>=2.2.0 pytest-asyncio>=0.17 hypothesis>=6.34.2 && \
43
- python setup.py build_ext -q -j$(nproc) && \
43
+ python setup.py build_ext -q -j1 && \
44
44
python -m pip install --no-build-isolation --no-use-pep517 -e . && \
45
45
python -m pip list && \
46
46
export PANDAS_CI=1 && \
Original file line number Diff line number Diff line change 82
82
python -m pip install python-dateutil pytz cython hypothesis>=6.34.2 pytest>=7.0.0 pytest-xdist>=2.2.0 pytest-cov pytest-asyncio>=0.17
83
83
python -m pip list
84
84
85
+ # GH 47305: Parallel build can cause flaky ImportError from pandas/_libs/tslibs
85
86
- name : Build Pandas
86
87
run : |
87
- python setup.py build_ext -q -j4
88
+ python setup.py build_ext -q -j1
88
89
python -m pip install -e . --no-build-isolation --no-use-pep517 --no-index
89
90
90
91
- name : Build Version
You can’t perform that action at this time.
0 commit comments