Skip to content

Commit

Permalink
Revert "CI: Pin cython on 32bit build" (#47898)
Browse files Browse the repository at this point in the history
* Revert "CI: Pin cython on 32bit build (#47889)"

This reverts commit 1ff651f.

* Don't pin Cython anywhere in CI
  • Loading branch information
lithomas1 committed Aug 1, 2022
1 parent 447b14f commit 91d4cc5
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/32-bit-linux.yml
Expand Up @@ -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 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 && \
Expand Down
3 changes: 1 addition & 2 deletions ci/deps/actions-310-numpydev.yaml
Expand Up @@ -16,8 +16,7 @@ dependencies:
- pytz
- pip
- pip:
#- cython # TODO: don't install from master after Cython 3.0.0a11 is released
- "git+https://github.com/cython/cython.git@master"
- "cython"
- "--extra-index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple"
- "--pre"
- "numpy"
Expand Down
2 changes: 1 addition & 1 deletion ci/deps/actions-310.yaml
Expand Up @@ -5,7 +5,7 @@ dependencies:
- python=3.10

# test dependencies
- cython=0.29.30
- cython>=0.29.30
- pytest>=6.0
- pytest-cov
- pytest-xdist>=1.31
Expand Down
2 changes: 1 addition & 1 deletion ci/deps/actions-38-downstream_compat.yaml
Expand Up @@ -6,7 +6,7 @@ dependencies:
- python=3.8

# test dependencies
- cython=0.29.30
- cython>=0.29.30
- pytest>=6.0
- pytest-cov
- pytest-xdist>=1.31
Expand Down
2 changes: 1 addition & 1 deletion ci/deps/actions-38-minimum_versions.yaml
Expand Up @@ -7,7 +7,7 @@ dependencies:
- python=3.8.0

# test dependencies
- cython=0.29.30
- cython>=0.29.30
- pytest>=6.0
- pytest-cov
- pytest-xdist>=1.31
Expand Down
2 changes: 1 addition & 1 deletion ci/deps/actions-38.yaml
Expand Up @@ -5,7 +5,7 @@ dependencies:
- python=3.8

# test dependencies
- cython=0.29.30
- cython>=0.29.30
- pytest>=6.0
- pytest-cov
- pytest-xdist>=1.31
Expand Down
2 changes: 1 addition & 1 deletion ci/deps/actions-39.yaml
Expand Up @@ -5,7 +5,7 @@ dependencies:
- python=3.9

# test dependencies
- cython=0.29.30
- cython>=0.29.30
- pytest>=6.0
- pytest-cov
- pytest-xdist>=1.31
Expand Down
2 changes: 1 addition & 1 deletion ci/deps/circle-38-arm64.yaml
Expand Up @@ -5,7 +5,7 @@ dependencies:
- python=3.8

# test dependencies
- cython=0.29.30
- cython>=0.29.30
- pytest>=6.0
- pytest-cov
- pytest-xdist>=1.31
Expand Down

0 comments on commit 91d4cc5

Please sign in to comment.