Skip to content

Commit 2bea520

Browse files
authored
Merge pull request #80 from simpeg/bug/versions
update required properties version in setup.py
2 parents d8b41dc + 6998f02 commit 2bea520

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[bumpversion]
2-
current_version = 0.1.10
2+
current_version = 0.1.11
33
files = setup.py discretize/__init__.py docs/conf.py
44

discretize/TensorMesh.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ def __init__(self, h=None, x0=None, **kwargs):
3737
x0_in = x0
3838

3939
# Sanity Checks
40-
assert type(h_in) in [list, tuple], 'h_in must be a list'
40+
assert type(h_in) in [list, tuple], 'h_in must be a list, not {}'.format(type(h_in))
4141
assert len(h_in) in [1, 2, 3], (
42-
'h_in must be of dimension 1, 2, or 3'
42+
'h_in must be of dimension 1, 2, or 3 not {}'.format(len(h_in))
4343
)
4444

4545
# build h

discretize/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"""
1919
)
2020

21-
__version__ = '0.1.10'
21+
__version__ = '0.1.11'
2222
__author__ = 'SimPEG Team'
2323
__license__ = 'MIT'
2424
__copyright__ = '2013 - 2017, SimPEG Developers, http://simpeg.xyz'

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
# built documents.
6161
#
6262
# The short X.Y version.
63-
version = '0.1.10'
63+
version = '0.1.11'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '0.1.10'
65+
release = '0.1.11'
6666

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

requirements_dev.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ cython
1212
pymatsolver>=0.1.2
1313
ipython
1414
matplotlib
15-
properties[math]>=0.3.6b0
15+
properties>=0.3.6b0
16+
vectormath
1617
wheel
1718
twine

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,16 @@ def configuration(parent_package='', top_path=None):
5656

5757
setup(
5858
name="discretize",
59-
version="0.1.10",
59+
version="0.1.11",
6060
install_requires=[
6161
'numpy>=1.7',
6262
'scipy>=0.13',
6363
'cython',
6464
'ipython',
6565
'matplotlib',
6666
'pymatsolver>=0.1.2',
67-
'properties[math]'
67+
'properties>=0.3.6b0',
68+
'vectormath'
6869
],
6970
author="Rowan Cockett",
7071
author_email="[email protected]",

0 commit comments

Comments
 (0)