Skip to content

Commit

Permalink
Merge pull request #21530 from felixxm/cython-0.29.30
Browse files Browse the repository at this point in the history
MAINT: Update to Cython 0.29.30.
  • Loading branch information
mattip committed May 19, 2022
2 parents db481ba + c0696c5 commit 57961d2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_test.yml
Expand Up @@ -253,7 +253,7 @@ jobs:
docker run --name the_container --interactive -v /:/host arm32v7/ubuntu:focal /bin/bash -c "
apt update &&
apt install -y git python3 python3-dev python3-pip &&
pip3 install cython==0.29.29 setuptools\<49.2.0 hypothesis==6.23.3 pytest==6.2.5 &&
pip3 install cython==0.29.30 setuptools\<49.2.0 hypothesis==6.23.3 pytest==6.2.5 &&
ln -s /host/lib64 /lib64 &&
ln -s /host/lib/x86_64-linux-gnu /lib/x86_64-linux-gnu &&
ln -s /host/usr/arm-linux-gnueabihf /usr/arm-linux-gnueabihf &&
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Expand Up @@ -8,7 +8,7 @@ channels:
- conda-forge
dependencies:
- python=3.9 #need to pin to avoid issues with builds
- cython
- cython=0.29.30
- compilers
- openblas
- nomkl
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -4,7 +4,7 @@ requires = [
"packaging==20.5; platform_machine=='arm64'", # macos M1
"setuptools==59.2.0",
"wheel==0.37.0",
"Cython>=0.29.29,<3.0",
"Cython>=0.29.30,<3.0",
]


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -259,7 +259,7 @@ def generate_cython():
else:
# Note: keep in sync with that in pyproject.toml
# Update for Python 3.11
required_version = '0.29.29'
required_version = '0.29.30'

if _pep440.parse(cython_version) < _pep440.Version(required_version):
cython_path = Cython.__file__
Expand Down
2 changes: 1 addition & 1 deletion test_requirements.txt
@@ -1,4 +1,4 @@
cython>=0.29.29,<3.0
cython>=0.29.30,<3.0
wheel==0.37.0
setuptools==59.2.0
hypothesis==6.24.1
Expand Down

0 comments on commit 57961d2

Please sign in to comment.