Skip to content

Commit b88561d

Browse files
committed
upgrade to v0.6.0
1 parent d67a2e1 commit b88561d

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
- Python 3.4+
77
- PyTorch 1.0
88
- Cython
9-
- [mmcv](https://github.com/open-mmlab/mmcv) >= 0.2.2
9+
- [mmcv](https://github.com/open-mmlab/mmcv) >= 0.2.5
1010

1111
### Install mmdetection
1212

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ This project is released under the [Apache 2.0 license](LICENSE).
3939

4040
## Updates
4141

42+
v0.6.0 (14/04/2019)
43+
- Various minor fixes and user experience improvements.
44+
- Replace NMS and SigmoidFocalLoss with Pytorch CUDA extensions.
45+
4246
v0.6rc0(06/02/2019)
4347
- Migrate to PyTorch 1.0.
4448

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def readme():
1212

1313
MAJOR = 0
1414
MINOR = 6
15-
PATCH = 'rc0'
15+
PATCH = 0
1616
SUFFIX = ''
1717
SHORT_VERSION = '{}.{}.{}{}'.format(MAJOR, MINOR, PATCH, SUFFIX)
1818

@@ -106,7 +106,7 @@ def get_version():
106106
setup_requires=['pytest-runner'],
107107
tests_require=['pytest'],
108108
install_requires=[
109-
'mmcv', 'numpy', 'matplotlib', 'six', 'terminaltables',
109+
'mmcv>=0.2.5', 'numpy', 'matplotlib', 'six', 'terminaltables',
110110
'pycocotools'
111111
],
112112
zip_safe=False)

0 commit comments

Comments
 (0)