Skip to content

Commit 09ace63

Browse files
authored
Include more-itertools in build env (#8611)
Fixes #8610. ### Description setuptools’ import chain requires more-itertools, but it isn’t installed when setup.py runs. Edit pyproject.toml to include it under [build-system]. ### Types of changes <!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [ ] Breaking change (fix or new feature that would cause existing functionality to change). - [ ] New tests added to cover the changes. - [ ] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [ ] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [ ] In-line docstrings updated. - [ ] Documentation updated, tested `make html` command in the `docs/` folder. --------- Signed-off-by: Yun Liu <yunl@nvidia.com>
1 parent 42a9947 commit 09ace63

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/pythonapp-min.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ jobs:
136136
run: |
137137
which python
138138
python -m pip install --user --upgrade pip setuptools wheel
139+
python -m pip install --user more-itertools>=8.0
139140
- name: cache weekly timestamp
140141
id: pip-cache
141142
run: |

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
requires = [
33
"wheel",
44
"setuptools",
5+
"more-itertools>=8.0",
56
"torch>=2.4.1",
67
"ninja",
78
"packaging"

0 commit comments

Comments
 (0)