Skip to content

Commit

Permalink
Fix CI error when 'numpy >= 1.24.0' (#683)
Browse files Browse the repository at this point in the history
* Update merge_stage_test.yml

* Update re_fpn.py

* Update re_fpn.py
  • Loading branch information
zytx121 authored Jan 3, 2023
1 parent c961274 commit 5d0491c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/merge_stage_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Install other dependencies
run: pip install -r requirements/tests.txt
- name: Build and install
run: rm -rf .eggs && pip install -e .
run: rm -rf .eggs && pip install 'numpy < 1.24.0' && pip install -e .
- name: Run unittests and generate coverage report
run: |
coverage run --branch --source mmrotate -m pytest tests/
Expand Down

0 comments on commit 5d0491c

Please sign in to comment.