From 2990265b7e7788dcfc03d361ae0609fa4f96716c Mon Sep 17 00:00:00 2001 From: Thomas Li <47963215+lithomas1@users.noreply.github.com> Date: Wed, 16 Feb 2022 05:13:32 -0800 Subject: [PATCH] CI: Unpin Cython on PyPy testing (#46016) --- .github/workflows/posix.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/posix.yml b/.github/workflows/posix.yml index 35196ad2840c6..118a37e191673 100644 --- a/.github/workflows/posix.yml +++ b/.github/workflows/posix.yml @@ -143,8 +143,7 @@ jobs: shell: bash run: | # TODO: re-enable cov, its slowing the tests down though - # TODO: Unpin Cython, the new Cython 0.29.26 is causing compilation errors - pip install Cython==0.29.25 numpy python-dateutil pytz pytest>=6.0 pytest-xdist>=1.31.0 hypothesis>=5.5.3 + pip install Cython numpy python-dateutil pytz pytest>=6.0 pytest-xdist>=1.31.0 hypothesis>=5.5.3 if: ${{ env.IS_PYPY == 'true' }} - name: Build Pandas