File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ set -euxo pipefail
16
16
readonly BUILD_DEPS=(
17
17
# This list must match the build-system.requires list from pyproject.toml.
18
18
" cmake"
19
+ " pip>=23"
19
20
" pyyaml"
20
21
" setuptools>=63"
21
22
" tomli"
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ EXIR_REQUIREMENTS=(
73
73
# pip packages needed for development.
74
74
DEVEL_REQUIREMENTS=(
75
75
cmake # For building binary targets.
76
+ " pip>=23" # For building the pip package.
76
77
pyyaml # Imported by the kernel codegen tools.
77
78
" setuptools>=63" # For building the pip package.
78
79
tomli # Imported by extract_sources.py when using python < 3.11.
Original file line number Diff line number Diff line change 1
1
[build-system ]
2
2
requires = [
3
3
" cmake" , # For building binary targets in the wheel.
4
+ " pip>=23" , # For building the pip package.
4
5
" pyyaml" , # Imported by the kernel codegen tools.
5
6
" setuptools>=63" , # For building the pip package contents.
6
7
" tomli" , # Imported by extract_sources.py when using python < 3.11.
You can’t perform that action at this time.
0 commit comments