Skip to content

Commit ea8d405

Browse files
committed
release v0.4.0
release v0.4.0
1 parent 8e387a7 commit ea8d405

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ Run the following command to install the latest released version of PyMIC:
4747
```bash
4848
pip install PYMIC
4949
```
50-
To install a specific version of PYMIC such as 0.3.1, run:
50+
To install a specific version of PYMIC such as 0.4.0, run:
5151

5252
```bash
53-
pip install PYMIC==0.3.1
53+
pip install PYMIC==0.4.0
5454
```
5555
Alternatively, you can download the source code for the latest version. Run the following command to compile and install:
5656

pymic/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
from __future__ import absolute_import
2-
__version__ = "0.3.1.1"
2+
__version__ = "0.4.0"

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setuptools.setup(
1313
name = 'PYMIC',
14-
version = "0.3.1.1",
14+
version = "0.4.0",
1515
author ='PyMIC Consortium',
1616
author_email = 'wguotai@gmail.com',
1717
description = description,
@@ -41,8 +41,8 @@
4141
python_requires = '>=3.6',
4242
entry_points = {
4343
'console_scripts': [
44-
'pymic_train = pymic.net_run.train:main',
45-
'pymic_test = pymic.net_run.predict:main',
44+
'pymic_train = pymic.net_run.train:main',
45+
'pymic_test = pymic.net_run.predict:main',
4646
'pymic_eval_cls = pymic.util.evaluation_cls:main',
4747
'pymic_eval_seg = pymic.util.evaluation_seg:main'
4848
],

0 commit comments

Comments
 (0)