diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2020-09-12 07:35:48 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-12 07:35:48 -0600 |
commit | 254a1f8932b9529db49f0e9043a5288d86bd899e (patch) | |
tree | a172b06f66c0f46793402c0fe58a4a3069b6b7c2 | |
parent | 3329d26c5d1d53f7fca1dfe253fdc43e93f0f6aa (diff) | |
parent | 8ef3a35be95e98210c1eb03ece49b6120603e7dd (diff) | |
download | numpy-254a1f8932b9529db49f0e9043a5288d86bd899e.tar.gz |
Merge pull request #17297 from rgommers/build-deps-upperlimit
BLD: set upper versions for build dependencies
-rw-r--r-- | pyproject.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index 3566cc683..cfdbfa6c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,8 +2,8 @@ # Minimum requirements for the build system to execute. requires = [ "setuptools<49.2.0", - "wheel", - "Cython>=0.29.21", # Note: keep in sync with tools/cythonize.py + "wheel<=0.35.1", + "Cython>=0.29.21,<3.0", # Note: keep in sync with tools/cythonize.py ] |