File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 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() {
160160 # reference_model flatbuffers version clashes with Vela.
161161 # go with Vela's since it newer.
162162 # 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
164164
165165}
166166
Original file line number Diff line number Diff line change 11[build-system ]
22requires = [
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 .
44 " pip>=23" , # For building the pip package.
55 " pyyaml" , # Imported by the kernel codegen tools.
66 " 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.
22pip >= 23 # For building the pip package.
33pyyaml # Imported by the kernel codegen tools.
44setuptools >= 63 # For building the pip package contents.
You can’t perform that action at this time.
0 commit comments