File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ function setup_tosa_reference_model() {
160
160
# reference_model flatbuffers version clashes with Vela.
161
161
# go with Vela's since it newer.
162
162
# Vela's flatbuffer requirement is expected to loosen, then remove this. MLETORCH-565
163
- pip install tosa-tools@git+${tosa_reference_model_url} @${tosa_reference_model_rev} --no-dependencies flatbuffers
163
+ CMAKE_POLICY_VERSION_MINIMUM=3.5 pip install tosa-tools@git+${tosa_reference_model_url} @${tosa_reference_model_rev} --no-dependencies flatbuffers
164
164
165
165
}
166
166
Original file line number Diff line number Diff line change 1
1
[build-system ]
2
2
requires = [
3
- " cmake" , # For building binary targets in the wheel.
3
+ " cmake<4.0.0 " , # For building binary targets in the wheel. 4.0.0 breaks third-party CMake build so temporarily pin the version .
4
4
" pip>=23" , # For building the pip package.
5
5
" pyyaml" , # Imported by the kernel codegen tools.
6
6
" setuptools>=63" , # For building the pip package contents.
Original file line number Diff line number Diff line change 1
- cmake >= 3.19 # For building binary targets in the wheel.
1
+ cmake >= 3.19 , < 4.0.0 # For building binary targets in the wheel.
2
2
pip >= 23 # For building the pip package.
3
3
pyyaml # Imported by the kernel codegen tools.
4
4
setuptools >= 63 # For building the pip package contents.
You can’t perform that action at this time.
0 commit comments