Skip to content
Snippets Groups Projects
Unverified Commit c8ea34c6 authored by jbrockmendel's avatar jbrockmendel Committed by GitHub
Browse files

Revert "Re-enable parallel builds in CI" (#51952)

Revert "Re-enable parallel builds in CI (#51902)"

This reverts commit 4d74fbdf.
parent 8487b2e2
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,8 @@ if pip list | grep -q ^pandas; then
fi
echo "Build extensions"
python setup.py build_ext -q -j4
# GH 47305: Parallel build can causes flaky ImportError from pandas/_libs/tslibs
python setup.py build_ext -q -j1
echo "Install pandas"
python -m pip install --no-build-isolation --no-use-pep517 -e .
......
......@@ -40,7 +40,7 @@ jobs:
python -m pip install --no-deps -U pip wheel 'setuptools<60.0.0' && \
python -m pip install versioneer[toml] && \
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 && \
python setup.py build_ext -q -j$(nproc) && \
python setup.py build_ext -q -j1 && \
python -m pip install --no-build-isolation --no-use-pep517 -e . && \
python -m pip list && \
export PANDAS_CI=1 && \
......
......@@ -82,9 +82,10 @@ jobs:
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
python -m pip list
# GH 47305: Parallel build can cause flaky ImportError from pandas/_libs/tslibs
- name: Build Pandas
run: |
python setup.py build_ext -q -j4
python setup.py build_ext -q -j1
python -m pip install -e . --no-build-isolation --no-use-pep517 --no-index
- name: Build Version
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment