summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@gmail.com>2020-09-11 23:29:32 +0100
committerRalf Gommers <ralf.gommers@gmail.com>2020-09-11 23:29:32 +0100
commit8ef3a35be95e98210c1eb03ece49b6120603e7dd (patch)
treea172b06f66c0f46793402c0fe58a4a3069b6b7c2
parent3329d26c5d1d53f7fca1dfe253fdc43e93f0f6aa (diff)
downloadnumpy-8ef3a35be95e98210c1eb03ece49b6120603e7dd.tar.gz
BLD: set upper versions for build dependencies
This is something we really should do for all dependencies, but I expect it to become more important now that build-related packages are all starting to update regarding the upcoming distutils deprecation. And Cython has a major release coming up - just in case, avoid it.
-rw-r--r--pyproject.toml4
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
]