Remove globally pinned build requirements (#3577)

This commit is contained in:
Gyeongjae Choi 2023-02-14 02:55:41 +09:00 committed by GitHub
parent e835bf05ff
commit 0b378d6727
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 11 deletions

View File

@ -74,17 +74,6 @@ def install_reqs(env: IsolatedEnv, reqs: set[str]) -> None:
reqs, get_unisolated_packages() + AVOIDED_REQUIREMENTS
)
)
# Some packages (numcodecs) don't declare cython as a build dependency and
# only recythonize if it is present. We need them to always recythonize so
# we always install cython. If the reqs included some cython version already
# then this won't do anything.
env.install(
[
"cython",
"pythran",
"setuptools<65.6.0", # https://github.com/pypa/setuptools/issues/3693
]
)
def _build_in_isolated_env(