diff options
author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-05-18 07:19:02 +0200 |
---|---|---|
committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-05-19 08:13:36 +0200 |
commit | c0696c5f26f8b45b01c09d21e86c104b7f616577 (patch) | |
tree | e68eea5f81761af9d7462d6e2982dfbc97723207 | |
parent | 59aad3cf436691d447e43038e3402500f13cd817 (diff) | |
download | numpy-c0696c5f26f8b45b01c09d21e86c104b7f616577.tar.gz |
MAINT: Update to Cython 0.29.30.
-rw-r--r-- | .github/workflows/build_test.yml | 2 | ||||
-rw-r--r-- | environment.yml | 2 | ||||
-rw-r--r-- | pyproject.toml | 2 | ||||
-rwxr-xr-x | setup.py | 2 | ||||
-rw-r--r-- | test_requirements.txt | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 1def3acae..6725719aa 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -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 && diff --git a/environment.yml b/environment.yml index e503e9990..1d0c956ac 100644 --- a/environment.yml +++ b/environment.yml @@ -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 diff --git a/pyproject.toml b/pyproject.toml index b821ec73c..b5564fc07 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", ] @@ -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__ diff --git a/test_requirements.txt b/test_requirements.txt index cfef4afdb..ff39dbcf4 100644 --- a/test_requirements.txt +++ b/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 |