-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bump v0.30.0 #2462
bump v0.30.0 #2462
Conversation
Codecov ReportBase: 88.95% // Head: 88.95% // No change to project coverage 👍
Additional details and impacted files@@ Coverage Diff @@
## master #2462 +/- ##
=======================================
Coverage 88.95% 88.95%
=======================================
Files 146 146
Lines 8753 8753
Branches 1474 1474
=======================================
Hits 7786 7786
Misses 725 725
Partials 242 242
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
docs/en/changelog.md
Outdated
**Enhancement** | ||
|
||
- Update CI and pre-commit checking ([#2309](https://github.com/open-mmlab/mmsegmentation/pull/2309),[#2331](https://github.com/open-mmlab/mmsegmentation/pull/2331)) | ||
- Add 'Projects/' folder, and the first example project in 0.x ([#2457](https://github.com/open-mmlab/mmsegmentation/pull/2457)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Add 'Projects/' folder, and the first example project in 0.x ([#2457](https://github.com/open-mmlab/mmsegmentation/pull/2457)) | |
- Add `Projects/` folder, and the first example project in 0.x ([#2457](https://github.com/open-mmlab/mmsegmentation/pull/2457)) |
docs/en/changelog.md
Outdated
|
||
- Update CI and pre-commit checking ([#2309](https://github.com/open-mmlab/mmsegmentation/pull/2309),[#2331](https://github.com/open-mmlab/mmsegmentation/pull/2331)) | ||
- Add 'Projects/' folder, and the first example project in 0.x ([#2457](https://github.com/open-mmlab/mmsegmentation/pull/2457)) | ||
- Fix the deprecation of np.float and fix ci configuration ([#2451](https://github.com/open-mmlab/mmsegmentation/pull/2451)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Fix the deprecation of np.float and fix ci configuration ([#2451](https://github.com/open-mmlab/mmsegmentation/pull/2451)) | |
- Fix the deprecation of `np.float` and CI configuration problems ([#2451](https://github.com/open-mmlab/mmsegmentation/pull/2451)) |
docs/en/changelog.md
Outdated
**Documentation** | ||
|
||
- Add high quality synthetic face occlusion dataset link to readme ([#2453](https://github.com/open-mmlab/mmsegmentation/pull/2453)) | ||
- Fix the docstring error in the class PascalContextDataset59 ([#2450](https://github.com/open-mmlab/mmsegmentation/pull/2450)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Fix the docstring error in the class PascalContextDataset59 ([#2450](https://github.com/open-mmlab/mmsegmentation/pull/2450)) | |
- Fix the docstring error in the `PascalContextDataset59` class ([#2450](https://github.com/open-mmlab/mmsegmentation/pull/2450)) |
PR fix version to original repository. change to original repository.
…mlab#2451) ## Motivation 1. numpy from 1.24 deprecated the aliases np.object, np.bool, np.float, np.complex, np.str, and np.int https://numpy.org/devdocs/release/1.24.0-notes.html 2. timm needs to pytorch>=1.7, so ignore test timm in pytorch 1.5 and 1.6 3. Remove install pillow as it doesn't test torchvision < 0.5 ## Modification 1. np.float->np.float32 2. torch >= '1.7.0' -> matrix.torch != '1.5.1+cu101' && matrix.torch != '1.6.0+cu101' (as '1.10' < '1.7' 3. Remove install pillow
Co-authored-by: MengzhangLI <mcmong@pku.edu.cn>
Thanks for your contribution and we appreciate it a lot. The following instructions would make your pull request more healthy and more easily get feedback. If you do not understand some items, don't worry, just make the pull request and seek help from maintainers.
Motivation
Please describe the motivation of this PR and the goal you want to achieve through this PR.
Modification
Please briefly describe what modification is made in this PR.
BC-breaking (Optional)
Does the modification introduce changes that break the backward-compatibility of the downstream repos?
If so, please describe how it breaks the compatibility and how the downstream projects should modify their code to keep compatibility with this PR.
Use cases (Optional)
If this PR introduces a new feature, it is better to list some use cases here, and update the documentation.
Checklist