From 1e90bffa12cc621069339836dd3392e7f4ca09d4 Mon Sep 17 00:00:00 2001 From: Matthew Roeschke Date: Thu, 28 Jul 2022 15:37:19 -0700 Subject: [PATCH 1/2] CI: Pin cython on 32bit build --- .github/workflows/32-bit-linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/32-bit-linux.yml b/.github/workflows/32-bit-linux.yml index e091160c952f8..2bdb329979fb2 100644 --- a/.github/workflows/32-bit-linux.yml +++ b/.github/workflows/32-bit-linux.yml @@ -38,7 +38,7 @@ jobs: /opt/python/cp38-cp38/bin/python -m venv ~/virtualenvs/pandas-dev && \ . ~/virtualenvs/pandas-dev/bin/activate && \ python -m pip install --no-deps -U pip wheel 'setuptools<60.0.0' && \ - pip install cython numpy python-dateutil pytz pytest pytest-xdist pytest-asyncio>=0.17 hypothesis && \ + pip install cython=0.29.30 numpy python-dateutil pytz pytest pytest-xdist pytest-asyncio>=0.17 hypothesis && \ python setup.py build_ext -q -j2 && \ python -m pip install --no-build-isolation --no-use-pep517 -e . && \ export PANDAS_CI=1 && \ From 5cbc6c8964bae450c977fc0331d990f76bfac8da Mon Sep 17 00:00:00 2001 From: Matthew Roeschke Date: Thu, 28 Jul 2022 15:39:50 -0700 Subject: [PATCH 2/2] == --- .github/workflows/32-bit-linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/32-bit-linux.yml b/.github/workflows/32-bit-linux.yml index 2bdb329979fb2..8c74a53feed9b 100644 --- a/.github/workflows/32-bit-linux.yml +++ b/.github/workflows/32-bit-linux.yml @@ -38,7 +38,7 @@ jobs: /opt/python/cp38-cp38/bin/python -m venv ~/virtualenvs/pandas-dev && \ . ~/virtualenvs/pandas-dev/bin/activate && \ python -m pip install --no-deps -U pip wheel 'setuptools<60.0.0' && \ - pip install cython=0.29.30 numpy python-dateutil pytz pytest pytest-xdist pytest-asyncio>=0.17 hypothesis && \ + pip install cython==0.29.30 numpy python-dateutil pytz pytest pytest-xdist pytest-asyncio>=0.17 hypothesis && \ python setup.py build_ext -q -j2 && \ python -m pip install --no-build-isolation --no-use-pep517 -e . && \ export PANDAS_CI=1 && \