File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ set -euxo pipefail
1616readonly BUILD_DEPS=(
1717 # This list must match the build-system.requires list from pyproject.toml.
1818 " cmake"
19+ # TODO(lfq): set pip>=23
20+ " pip"
1921 " pyyaml"
2022 " setuptools>=63"
2123 " tomli"
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ EXIR_REQUIREMENTS=(
7373# pip packages needed for development.
7474DEVEL_REQUIREMENTS=(
7575 cmake # For building binary targets.
76+ " pip>=23" # For building the pip package.
7677 pyyaml # Imported by the kernel codegen tools.
7778 " setuptools>=63" # For building the pip package.
7879 tomli # Imported by extract_sources.py when using python < 3.11.
Original file line number Diff line number Diff line change 11[build-system ]
22requires = [
33 " cmake" , # For building binary targets in the wheel.
4+ " pip>=23" , # For building the pip package.
45 " pyyaml" , # Imported by the kernel codegen tools.
56 " setuptools>=63" , # For building the pip package contents.
67 " tomli" , # Imported by extract_sources.py when using python < 3.11.
You can’t perform that action at this time.
0 commit comments