Skip to content

Commit 41a5c7c

Browse files
authored
Merge pull request #46 from KVSlab/morphman-v1.0
Bump version to v1.0
2 parents 9fd2a3a + 853bfa4 commit 41a5c7c

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Kjeldsberg et al., (2019). morphMan: Automated manipulation of vascular geometri
4949
Installation
5050
------------
5151

52-
For reference, morphMan requires the following dependencies: VTK > 8.1, Numpy > 1.13, SciPy > 1.0.0, and VMTK 1.4.
52+
For reference, morphMan requires the following dependencies: VTK > 8.1, Numpy <= 1.13, SciPy > 1.0.0, and VMTK 1.4.
5353
If you are on Windows, macOS or Linux you can install all the general dependencies through anaconda.
5454
First install Anaconda or Miniconda (preferably the Python 3.6 version).
5555
Then execute the following command

conda-build/conda_build_config.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
numpy:
2+
- 1.13.*
3+
14
python:
25
- 3.5.1
36
- 3.6.1

conda-build/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: "morphman"
3-
version: "0.3"
3+
version: "1.0"
44

55
source:
66
path: ../
@@ -16,7 +16,7 @@ requirements:
1616
run:
1717
- python {{ python }}
1818
- scipy
19-
- numpy <=1.13
19+
- numpy {{ numpy }}
2020
- vtk {{ vtk }}
2121
- vmtk
2222

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@
6666
# built documents.
6767
#
6868
# The short X.Y version.
69-
version = u'0.3'
69+
version = u'1.0'
7070
# The full version, including alpha/beta/rc tags.
71-
release = u'0.3'
71+
release = u'1.0'
7272

7373
# The language for content autogenerated by Sphinx. Refer to documentation
7474
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
DEPENDENCIES = [] # 'scipy', 'numpy', 'vtk']
77
TEST_DEPENDENCIES = [] # 'pytest']
88

9-
VERSION = "0.3"
9+
VERSION = "1.0"
1010
URL = "https://github.com/KVSlab/morphMan.git"
1111

1212
setuptools.setup(

0 commit comments

Comments
 (0)