diff options
| author | mattip <matti.picus@gmail.com> | 2021-12-19 00:17:08 +0200 |
|---|---|---|
| committer | mattip <matti.picus@gmail.com> | 2021-12-19 00:17:08 +0200 |
| commit | e3b3da04360c3c8a88189e5d5a15eb35a206a1b6 (patch) | |
| tree | 7b963cc19b5862a2cfd376ec0ec8f2989a21ed05 | |
| parent | bb95cf015165bcf85f99ba0d28a7a6e727ca955b (diff) | |
| download | numpy-e3b3da04360c3c8a88189e5d5a15eb35a206a1b6.tar.gz | |
BUILD: pin to cython 0.29.24 to hide PyPy3.8 bug
| -rw-r--r-- | pyproject.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 39d6fcd98..ee6e5d3b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,8 @@ requires = [ "packaging==20.5; platform_machine=='arm64'", # macos M1 "setuptools==59.2.0", "wheel==0.37.0", - "Cython>=0.29.24,<3.0", # Note: keep in sync with tools/cythonize.py + "Cython==0.29.24" # pin until PyPy releases v7.3.8 + # "Cython==0.29.24,<3.0", # Note: keep in sync with tools/cythonize.py ] |
