Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAINT: Update to Cython 0.29.30. #21530

Merged
merged 1 commit into from May 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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