File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -45,10 +45,11 @@ jobs:
45
45
with :
46
46
python-version : ' 3.10-dev'
47
47
48
+ # TODO: GH#44980 https://github.com/pypa/setuptools/issues/2941
48
49
- name : Install dependencies
49
50
shell : bash
50
51
run : |
51
- python -m pip install --upgrade pip setuptools wheel
52
+ python -m pip install --upgrade pip " setuptools<60.0.0" wheel
52
53
pip install -i https://pypi.anaconda.org/scipy-wheels-nightly/simple numpy
53
54
pip install git+https://github.com/nedbat/coveragepy.git
54
55
pip install cython python-dateutil pytz hypothesis pytest>=6.2.5 pytest-xdist pytest-cov
Original file line number Diff line number Diff line change @@ -36,13 +36,14 @@ jobs:
36
36
vmImage : ubuntu-18.04
37
37
38
38
steps :
39
+ # TODO: GH#44980 https://github.com/pypa/setuptools/issues/2941
39
40
- script : |
40
41
docker pull quay.io/pypa/manylinux2014_i686
41
42
docker run -v $(pwd):/pandas quay.io/pypa/manylinux2014_i686 \
42
43
/bin/bash -xc "cd pandas && \
43
44
/opt/python/cp38-cp38/bin/python -m venv ~/virtualenvs/pandas-dev && \
44
45
. ~/virtualenvs/pandas-dev/bin/activate && \
45
- python -m pip install --no-deps -U pip wheel setuptools && \
46
+ python -m pip install --no-deps -U pip wheel ' setuptools<60.0.0' && \
46
47
pip install cython numpy python-dateutil pytz pytest pytest-xdist hypothesis pytest-azurepipelines && \
47
48
python setup.py build_ext -q -j2 && \
48
49
python -m pip install --no-build-isolation -e . && \
Original file line number Diff line number Diff line change @@ -106,7 +106,8 @@ echo "[Build extensions]"
106
106
python setup.py build_ext -q -j2
107
107
108
108
echo " [Updating pip]"
109
- python -m pip install --no-deps -U pip wheel setuptools
109
+ # TODO: GH#44980 https://github.com/pypa/setuptools/issues/2941
110
+ python -m pip install --no-deps -U pip wheel " setuptools<60.0.0"
110
111
111
112
echo " [Install pandas]"
112
113
python -m pip install --no-build-isolation -e .
You can’t perform that action at this time.
0 commit comments