We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9672061 commit d707e05Copy full SHA for d707e05
build/packaging/pre_build_script.sh
@@ -13,14 +13,5 @@ set -euxo pipefail
13
# not install them. TODO(dbort): Switch to using `python -m build --wheel`,
14
# which does install them. Though we'd need to disable build isolation to be
15
# able to see the installed torch package.
16
-readonly BUILD_DEPS=(
17
- # This list must match the build-system.requires list from pyproject.toml.
18
- "cmake"
19
- "pip>=23"
20
- "pyyaml"
21
- "setuptools>=63"
22
- "tomli"
23
- "wheel"
24
- "zstd"
25
-)
26
-pip install --progress-bar off "${BUILD_DEPS[@]}"
+
+pip install --progress-bar off -r requirements-dev.txt
0 commit comments