Skip to content

Commit f2d6593

Browse files
update setuptool in CI to fix fire issue (#745)
Fixes # . ### Description A few sentences describing the changes proposed in this pull request. ### Status **Ready/Work in progress/Hold** ### Please ensure all the checkboxes: <!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> - [x] Codeformat tests passed locally by running `./runtests.sh --codeformat`. - [ ] In-line docstrings updated. - [ ] Update `version` and `changelog` in `metadata.json` if changing an existing bundle. - [ ] Please ensure the naming rules in config files meet our requirements (please refer to: `CONTRIBUTING.md`). - [ ] Ensure versions of packages such as `monai`, `pytorch` and `numpy` are correct in `metadata.json`. - [ ] Descriptions should be consistent with the content, such as `eval_metrics` of the provided weights and TorchScript modules. - [ ] Files larger than 25MB are excluded and replaced by providing download links in `large_file.yml`. - [ ] Avoid using path that contains personal information within config files (such as use `/home/your_name/` for `"bundle_root"`). Signed-off-by: Yiheng Wang <vennw@nvidia.com>
1 parent 7e996f8 commit f2d6593

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/code-format-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
- name: Install dependencies
3535
run: |
3636
python -m pip install --upgrade pip wheel
37+
python -m pip install --upgrade setuptools
3738
python -m pip install -r requirements-dev.txt
3839
- name: type check
3940
run: |

.github/workflows/premerge-cpu.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
- name: Install dependencies
3535
run: |
3636
python -m pip install --upgrade pip wheel
37+
python -m pip install --upgrade setuptools
3738
- name: check
3839
run: |
3940
# clean up temporary files

.github/workflows/weekly-tests-cpu.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ jobs:
6464
- name: Install dependencies
6565
run: |
6666
python -m pip install --upgrade pip wheel
67+
python -m pip install --upgrade setuptools
6768
- name: check
6869
run: |
6970
# clean up temporary files

0 commit comments

Comments
 (0)